Interface ProcessOptions

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 ProcessOptions {
    args?: string[];
    command: string;
    options?: {
        [key: string]: any;
    };
}

Hierarchy (view full)

Properties

args?: string[]
command: string
options?: {
    [key: string]: any;
}

Type declaration

  • [key: string]: any