trashposs/packages/trashposs-js/markdown/trashposs-js.api.fetchlike.md
2024-04-06 22:57:52 +02:00

523 B

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