firefish/packages/megalodon/src/response.ts
ThatOneCalculator bdc35a343e
refactor: 🚨 linting fix
2023-07-16 15:32:32 -07:00

9 lines
119 B
TypeScript

type Response<T = any> = {
data: T;
status: number;
statusText: string;
headers: any;
};
export default Response;