jormungandr-bite/packages/megalodon/src/response.ts

9 lines
119 B
TypeScript
Raw Normal View History

type Response<T = any> = {
2023-07-16 15:32:32 -07:00
data: T;
status: number;
statusText: string;
headers: any;
};
2023-07-16 15:32:32 -07:00
export default Response;