Interface TerminalProcessOptions

Options to spawn a new process (spawn).

For more information please refer to the spawn function of Node's child_process module:

https://nodejs.org/api/child_process.html#child_process_child_process_spawn_command_args_options

interface TerminalProcessOptions {
    args?: string[];
    command: string;
    commandLine?: string;
    isPseudo?: boolean;
    options?: {
        [key: string]: any;
    };
}

Hierarchy (view full)

Properties

args?: string[]
command: string
commandLine?: string

Windows only. Allow passing complex command lines already escaped for CommandLineToArgvW.

isPseudo?: boolean
options?: {
    [key: string]: any;
}

Type declaration

  • [key: string]: any