TenantAtlas/apps/platform/.pnpm-store/v10/files/33/d4266387f7c413e97087b171c871b06c36878be619a719bb89d0ccfe2d38a3e98a115a8c10126e1f51943e4b7a4b7bd040394dabc82d18b37dc2677cdf0cea
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

17 lines
467 B
Plaintext

import { CommandInfo } from '../command';
import { CommandParser } from './command-parser';
/**
* Strips quotes around commands so that they can run on the current shell.
*/
export declare class StripQuotes implements CommandParser {
parse(commandInfo: CommandInfo): {
command: string;
name: string;
env?: Record<string, unknown>;
cwd?: string;
prefixColor?: string;
ipc?: number;
raw?: boolean;
};
}