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

    Type Alias ShellCondition

    ShellCondition:
        | { command: string; kind: "command-exists" }
        | { kind: "executable" | "file" | "directory"; path: ShellValue }
        | { kind: "empty" | "non-empty"; value: ShellValue }
        | { conditions: readonly ShellCondition[]; kind: "and" }
        | { conditions: readonly ShellCondition[]; kind: "or" }
        | { condition: ShellCondition; kind: "not" }

    A condition evaluated by the generated shell script.