//#region src/singletons/fetch.d.ts /** * Overrides the fetch implementation used for LangSmith calls. * You should use this if you need to use an implementation of fetch * other than the default global (e.g. for dealing with proxies). * @param fetch The new fetch function to use. */ declare const overrideFetchImplementation: (fetch: (...args: any[]) => any) => void; //#endregion export { overrideFetchImplementation }; //# sourceMappingURL=fetch.d.ts.map