Interface ExecutableOptions

interface ExecutableOptions {
    cwd?: string;
    detached?: boolean;
    env?: any;
    shell?: boolean;
}

Properties

cwd?: string
detached?: boolean
env?: any
shell?: boolean