lfk-client-js/dist/core/ApiResult.d.ts

8 lines
182 B
TypeScript
Raw Normal View History

2020-12-22 14:17:25 +00:00
export declare type ApiResult = {
readonly url: string;
readonly ok: boolean;
readonly status: number;
readonly statusText: string;
readonly body: any;
};