valkyrie-docs/docs/api/valkyrie-js.api.fetchlike.md
2023-08-02 00:58:34 +12:00

485 B

Home > valkyrie-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>;
}>;