mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-26 04:23:09 +02:00
9 lines
119 B
TypeScript
9 lines
119 B
TypeScript
|
type Response<T = any> = {
|
||
|
data: T;
|
||
|
status: number;
|
||
|
statusText: string;
|
||
|
headers: any;
|
||
|
};
|
||
|
|
||
|
export default Response;
|