7ca28e254582dacd21ce4e24974fbbe5bb3301e7224754502c6a54346dd7e9ee294647268429dd5f344c0787ae144b962e59f56321ba880bde253756556e83 569 B

1234567891011121314
  1. import type { TimerHandle } from './timerHandle';
  2. declare type SetImmediateFunction = (handler: () => void, ...args: any[]) => TimerHandle;
  3. declare type ClearImmediateFunction = (handle: TimerHandle) => void;
  4. interface ImmediateProvider {
  5. setImmediate: SetImmediateFunction;
  6. clearImmediate: ClearImmediateFunction;
  7. delegate: {
  8. setImmediate: SetImmediateFunction;
  9. clearImmediate: ClearImmediateFunction;
  10. } | undefined;
  11. }
  12. export declare const immediateProvider: ImmediateProvider;
  13. export {};
  14. //# sourceMappingURL=immediateProvider.d.ts.map