UNPKG

451 BTypeScriptView Raw
1import { Command } from '../command';
2import { Logger } from '../logger';
3import { FlowController } from './flow-controller';
4/**
5 * Logs when commands failed executing, e.g. due to the executable not existing in the system.
6 */
7export declare class LogError implements FlowController {
8 private readonly logger;
9 constructor({ logger }: {
10 logger: Logger;
11 });
12 handle(commands: Command[]): {
13 commands: Command[];
14 };
15}