TenantAtlas/apps/platform/.pnpm-store/v10/files/12/169197e6f78fdb167dfa0c40209d202f0a7eebaf638905e51e19dbea9a4c1c762158ae87067e22af9c600ec6cae645f140c69d73b2ba800c1230a7228505af
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

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