mezon-js 2.15.19 → 2.15.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/config.d.ts DELETED
@@ -1,13 +0,0 @@
1
- type Fetcher = typeof fetch;
2
- /**
3
- * Set a custom fetch strategy for mezon-js API calls
4
- * @param customFetcher - A fetch-compatible function
5
- */
6
- export declare const setFetchStrategy: (customFetcher: Fetcher) => void;
7
- export declare const resetFetchStrategy: () => void;
8
- /**
9
- * Get the current fetch strategy
10
- * @returns The current fetcher function
11
- */
12
- export declare const getFetcher: () => Fetcher;
13
- export {};