10 lines
204 B
TypeScript
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 };
|