UNPKG

407 BTypeScriptView Raw
1import { Command } from '../command';
2import { Logger } from '../logger';
3import { FlowController } from './flow-controller';
4/**
5 * Logs the stdout and stderr output of commands.
6 */
7export declare class LogOutput implements FlowController {
8 private readonly logger;
9 constructor({ logger }: {
10 logger: Logger;
11 });
12 handle(commands: Command[]): {
13 commands: Command[];
14 };
15}