frontend/.pnpm-store/v3/files/0c/a78221c17913390b9dbb7d27becfc52e057ec3d155b2fca30080e2e3abbada400967454f0839c70251dc9b0a3965c73b4f266f03a65f3a5da6c3dd68238e56

8 lines
167 B
Plaintext

export type ApiResult = {
readonly url: string;
readonly ok: boolean;
readonly status: number;
readonly statusText: string;
readonly body: any;
};