1
0
Fork 1
mirror of https://example.com synced 2024-11-23 05:46:39 +09:00
firefish/packages/firefish-js/markdown/firefish-js.api.fetchlike.md
2023-07-20 04:17:05 +09:00

519 B

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