mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +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;
|
|
};
|