summaryrefslogtreecommitdiffstats
path: root/g4f/Provider/npm/node_modules/undici/types/global-dispatcher.d.ts
blob: 728f95ce23ce69871cc896a6fd3aa389eae18d7e (plain) (blame)
1
2
3
4
5
6
7
8
9
import Dispatcher from "./dispatcher";

export {
  getGlobalDispatcher,
  setGlobalDispatcher
}

declare function setGlobalDispatcher<DispatcherImplementation extends Dispatcher>(dispatcher: DispatcherImplementation): void;
declare function getGlobalDispatcher(): Dispatcher;