jormungandr-bite/packages/iceshrimp-js/markdown/iceshrimp-js.api.fetchlike.md
2024-06-17 10:15:54 -06:00

501 B

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