iceshrimp-legacy/packages/firefish-js/markdown/firefish-js.api.fetchlike.md
ThatOneCalculator ff08ec77ee
we be renamin
2023-07-15 14:21:17 -07: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>;
}>;