log-output.d.ts 407 B

123456789101112131415
  1. import { Command } from '../command';
  2. import { Logger } from '../logger';
  3. import { FlowController } from './flow-controller';
  4. /**
  5. * Logs the stdout and stderr output of commands.
  6. */
  7. export 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. }