datasquirel/client/fetch/index.d.ts

6 lines
233 B
TypeScript
Raw Normal View History

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