frontend/.pnpm-store/v3/files/12/169197e6f78fdb167dfa0c40209d202f0a7eebaf638905e51e19dbea9a4c1c762158ae87067e22af9c600ec6cae645f140c69d73b2ba800c1230a7228505af

9 lines
374 B
Plaintext

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