mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-12-15 13:25:44 +01: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;
|