mirror of
https://github.com/RYDE-WORK/full-stack-fastapi-template.git
synced 2026-01-19 21:23:36 +08:00
8 lines
166 B
TypeScript
8 lines
166 B
TypeScript
export type ApiResult<TData = any> = {
|
|
readonly body: TData
|
|
readonly ok: boolean
|
|
readonly status: number
|
|
readonly statusText: string
|
|
readonly url: string
|
|
}
|