datasquirel/client/fetch/index.d.ts
Benjamin Toby c49513c189 Updates
2024-12-06 11:44:26 +01:00

6 lines
275 B
TypeScript

export = clientFetch;
declare function clientFetch(url: string, options?: import("../../package-shared/types").FetchApiOptions, contentType?: "json" | "text" | "html" | "blob" | "file"): Promise<any>;
declare namespace clientFetch {
export { clientFetch as fetchApi };
}