add FetchLike (#19)

This commit is contained in:
marihachi 2021-05-23 16:42:27 +09:00 committed by GitHub
parent 39270c782a
commit 893fa691a7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,10 +14,20 @@ export function isAPIError(reason: any): reason is APIError {
return reason[MK_API_ERROR] === true;
}
export type FetchLike = (input: string, init?: {
method?: string;
body?: string;
credentials?: RequestCredentials;
cache?: RequestCache;
}) => Promise<{
status: number;
json(): Promise<any>;
}>;
export class APIClient {
public origin: string;
public credential: string | null | undefined;
public fetch: (typeof fetch);
public fetch: FetchLike;
constructor(opts: {
origin: APIClient['origin'];