Files
muuhd/node_modules/concurrently/dist/src/flow-control/log-error.d.ts
Kim Ravn Hansen 3f11ebe6dc rearrage_stuff
2025-09-16 11:26:40 +02:00

16 lines
451 B
TypeScript

import { Command } from '../command';
import { Logger } from '../logger';
import { FlowController } from './flow-controller';
/**
* Logs when commands failed executing, e.g. due to the executable not existing in the system.
*/
export declare class LogError implements FlowController {
private readonly logger;
constructor({ logger }: {
logger: Logger;
});
handle(commands: Command[]): {
commands: Command[];
};
}