iceshrimp-legacy/packages/calckey-js/markdown/calckey-js.api.fetchlike.md
2023-06-23 21:13:03 -07:00

515 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>;
}>;