This commit is contained in:
2025-03-18 16:37:12 +02:00
commit 91c2721fe6
4862 changed files with 405393 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
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;
};
}