Files
lfk-client-js/dist/core/ApiResult.d.ts
2020-12-30 18:01:24 +00:00

8 lines
175 B
TypeScript

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