1 | import { Command } from '../command';
|
2 | import { Logger } from '../logger';
|
3 | import { FlowController } from './flow-controller';
|
4 | /**
|
5 | * Logs when commands failed executing, e.g. due to the executable not existing in the system.
|
6 | */
|
7 | export 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 | }
|