Files
-S.I.S-QuaySo_v2/node_modules/concurrently/dist/src/flow-control/log-output.d.ts
T
2026-03-26 09:28:14 +07:00

16 lines
407 B
TypeScript

import { Command } from '../command';
import { Logger } from '../logger';
import { FlowController } from './flow-controller';
/**
* Logs the stdout and stderr output of commands.
*/
export declare class LogOutput implements FlowController {
private readonly logger;
constructor({ logger }: {
logger: Logger;
});
handle(commands: Command[]): {
commands: Command[];
};
}