firefish/packages/megalodon/src/response.ts

9 lines
119 B
TypeScript
Raw Normal View History

2023-07-20 04:17:05 +09:00
type Response<T = any> = {
data: T;
status: number;
statusText: string;
headers: any;
};
export default Response;