TenantAtlas/apps/platform/.pnpm-store/v10/files/38/6e695a5793a4b578b97e076882505fca6f3b738818f7d603a1c96b1eedc91180d74813f8b4728acc01dee71b21e04f8de1f2babb77586163cb4fb94de14c91
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

20 lines
610 B
Plaintext

import EventEmitter from 'events';
import { Command } from '../command';
import { FlowController } from './flow-controller';
/**
* Watches the main concurrently process for signals and sends the same signal down to each spawned
* command.
*/
export declare class KillOnSignal implements FlowController {
private readonly process;
private readonly abortController?;
constructor({ process, abortController, }: {
process: EventEmitter;
abortController?: AbortController;
});
handle(commands: Command[]): {
commands: Command[];
onFinish: () => void;
};
}