mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-21 20:59:05 +00:00
8 lines
172 B
TypeScript
8 lines
172 B
TypeScript
export type ApiResult<TData = any> = {
|
|
readonly body: TData;
|
|
readonly ok: boolean;
|
|
readonly status: number;
|
|
readonly statusText: string;
|
|
readonly url: string;
|
|
};
|