Workstation API - v0.6.2
    Preparing search index...

    Interface ShellCommand

    A command plus individually quoted arguments; it is not executed while declaring configuration.

    interface ShellCommand {
        args?: readonly ShellValue[];
        command: string;
        stderr?: "ignore" | "inherit";
    }
    Index
    args?: readonly ShellValue[]
    command: string
    stderr?: "ignore" | "inherit"