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

16 lines
416 B
TypeScript

import { Command } from '../command.js';
import { Logger } from '../logger.js';
import { FlowController } from './flow-controller.js';
/**
* 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[];
};
}