TenantAtlas/apps/platform/.pnpm-store/v10/files/be/eb2aa705638886398fb2b0c4e66dfdae4662545da8a7ae9f8797aa72d05a82144cc01497ae9d157f9e29e6c055b1fefb3d88bc01293858c53f91b7aff6bece
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
407 B
Plaintext

import { Command } from '../command';
import { Logger } from '../logger';
import { FlowController } from './flow-controller';
/**
* Logs the stdout and stderr output of commands.
*/
export declare class LogOutput implements FlowController {
private readonly logger;
constructor({ logger }: {
logger: Logger;
});
handle(commands: Command[]): {
commands: Command[];
};
}