TenantAtlas/apps/platform/.pnpm-store/v10/files/5f/a672a41a59a087564072660294af05436e67e583947b9a6b6a747f5ce4e005e2d4912cb6700e3b950a768fa19f5d6bef56130c93ebaccb097acc5c8e4080ff
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

16 lines
397 B
Plaintext

import { Command } from '../command';
import { Logger } from '../logger';
import { FlowController } from './flow-controller';
/**
* Logs the exit code/signal of commands.
*/
export declare class LogExit implements FlowController {
private readonly logger;
constructor({ logger }: {
logger: Logger;
});
handle(commands: Command[]): {
commands: Command[];
};
}