Metzploreur/node_modules/undici-types/global-dispatcher.d.ts

10 lines
276 B
TypeScript
Raw Normal View History

2023-11-01 16:33:25 +00:00
import Dispatcher from "./dispatcher";
export {
getGlobalDispatcher,
setGlobalDispatcher
}
declare function setGlobalDispatcher<DispatcherImplementation extends Dispatcher>(dispatcher: DispatcherImplementation): void;
declare function getGlobalDispatcher(): Dispatcher;