Files
www_zola_template/node_modules/concurrently/dist/src/flow-control/logger-padding.d.ts
2025-03-18 16:37:12 +02:00

14 lines
383 B
TypeScript

import { Command } from '../command';
import { Logger } from '../logger';
import { FlowController } from './flow-controller';
export declare class LoggerPadding implements FlowController {
private readonly logger;
constructor({ logger }: {
logger: Logger;
});
handle(commands: Command[]): {
commands: Command[];
onFinish: () => void;
};
}