169197e6f78fdb167dfa0c40209d202f0a7eebaf638905e51e19dbea9a4c1c762158ae87067e22af9c600ec6cae645f140c69d73b2ba800c1230a7228505af 374 B

123456789
  1. import { Scheduler } from '../Scheduler';
  2. import { Action } from './Action';
  3. import { AsyncAction } from './AsyncAction';
  4. export declare class AsyncScheduler extends Scheduler {
  5. actions: Array<AsyncAction<any>>;
  6. constructor(SchedulerAction: typeof Action, now?: () => number);
  7. flush(action: AsyncAction<any>): void;
  8. }
  9. //# sourceMappingURL=AsyncScheduler.d.ts.map