Files
Remote-Control-Center/mc_test/node_modules/concurrently/dist/src/command-parser/strip-quotes.d.ts
2025-11-25 09:56:15 +03:00

16 lines
493 B
TypeScript
Executable File

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> | undefined;
cwd?: string | undefined;
prefixColor?: string | undefined;
raw?: boolean | undefined;
};
}