TenantAtlas/apps/platform/.pnpm-store/v10/files/23/8102e4f39fce48fe56a6ce1bacc52e7c62519f48c9bca332211c292f8f288f1acc30888d514258563cab39988d8ae52a36d80e993307321d5be8898c337138
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

14 lines
403 B
Plaintext

import { Command } from '../command';
/**
* Interface for a class that controls and/or watches the behavior of commands.
*
* This may include logging their output, creating interactions between them, or changing when they
* actually finish.
*/
export interface FlowController {
handle(commands: Command[]): {
commands: Command[];
onFinish?: () => void | Promise<void>;
};
}