← full-stack-fastapi-template / frontend/src/client/core/ApiResult.ts
| 1 | export type ApiResult<TData = any> = { |
| 2 | readonly body: TData; |
| 3 | readonly ok: boolean; |
| 4 | readonly status: number; |
| 5 | readonly statusText: string; |
| 6 | readonly url: string; |
| 7 | }; |