interface Executable {
    args?: string[];
    command: string;
    options?: ExecutableOptions;
    transport?: Transport;
}

Properties

args?: string[]
command: string
transport?: Transport