493 B
493 B
Home > calckey-js > api > FetchLike
api.FetchLike type
Signature:
export declare type FetchLike = (
input: string,
init?: {
method?: string;
body?: string;
credentials?: RequestCredentials;
cache?: RequestCache;
},
) => Promise<{
status: number;
json(): Promise<any>;
}>;