IOweb/node_modules/@iconify/tools/lib/download/api/fetch.d.cts
2026-07-03 15:07:38 -05:00

10 lines
204 B
TypeScript

/**
* Set custom fetch function
*/
declare function setFetch(fetchFunction: typeof fetch): void;
/**
* Get fetch function
*/
declare function getFetch(): typeof fetch;
export { getFetch, setFetch };