TenantAtlas/apps/platform/.pnpm-store/v10/files/ce/83d9272c14c535f72703253b9855ce79c3b92df4e3e9af65194a76a3746c0d3b7fc6127432ee4216f8bbf2df6d4065236e38ccd0342da98be2fe6a92039926
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

16 lines
451 B
Plaintext

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[];
};
}