interface SpawnOptions {
    binary?: boolean;
    directory?: string;
    environ?: string[];
    err?: "message" | "out" | "ignore";
    host?: string;
    pty?: boolean;
    superuser?: "try" | "require";
}

Properties

binary?: boolean
directory?: string
environ?: string[]
err?: "message" | "out" | "ignore"
host?: string
pty?: boolean
superuser?: "try" | "require"