Files
hydro-builder-app/node_modules/concurrently/dist/lib/command-parser/expand-arguments.d.ts
2026-06-13 17:36:44 -07:00

19 lines
542 B
TypeScript

import { CommandInfo } from '../command.js';
import { CommandParser } from './command-parser.js';
/**
* 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;
};
}