mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
8 lines
119 B
TypeScript
8 lines
119 B
TypeScript
type Response<T = any> = {
|
|
data: T;
|
|
status: number;
|
|
statusText: string;
|
|
headers: any;
|
|
};
|
|
|
|
export default Response;
|