Files
2026-06-13 17:36:44 -07:00

14 lines
411 B
TypeScript

import type { Command } from '../command.js';
/**
* 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>;
};
}