datasquirel/client/fetch/index.d.ts
Benjamin Toby 0880526f44 Updates
2024-12-14 16:23:16 +01:00

6 lines
233 B
TypeScript

export = clientFetch;
declare function clientFetch(url: string, options?: import("../../package-shared/types").FetchApiOptions, csrf?: boolean): Promise<any>;
declare namespace clientFetch {
export { clientFetch as fetchApi };
}