sharkey/packages/megalodon/src/response.ts

9 lines
119 B
TypeScript
Raw Normal View History

2023-09-24 01:49:47 +09:00
type Response<T = any> = {
2023-09-25 08:20:03 +09:00
data: T;
status: number;
statusText: string;
headers: any;
};
2023-09-24 01:49:47 +09:00
2023-09-25 08:20:03 +09:00
export default Response;