TenantAtlas/apps/platform/.pnpm-store/v10/files/3a/5529a5eac9e36c5aefd64be6c7ed725bf97bb0446adb624a630a79765c3134c446d157d79bebd392e7784742f738e65b8b5f2620f1401ecf5a108c3ce87b6c
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

19 lines
536 B
Plaintext

import { CommandInfo } from '../command';
import { CommandParser } from './command-parser';
/**
* Replace placeholders with additional arguments.
*/
export declare class ExpandArguments implements CommandParser {
private readonly additionalArguments;
constructor(additionalArguments: string[]);
parse(commandInfo: CommandInfo): {
command: string;
name: string;
env?: Record<string, unknown>;
cwd?: string;
prefixColor?: string;
ipc?: number;
raw?: boolean;
};
}