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

    Interface WorkstationOptions

    interface WorkstationOptions {
        config?: ConfigInput;
        configPath?: string;
        context?: Context;
        machine?: string;
        onAction?: (action: Action) => void;
        onProgress?: (message: string) => void;
        runner?: Runner;
    }
    Index
    config?: ConfigInput

    Inline definition; no configuration file is loaded when supplied.

    configPath?: string

    File to load, or the lock/state identity for an inline configuration. Defaults to ./workstation.config.ts.

    context?: Context

    Explicit context for inline definitions, useful for isolated tests and alternate home directories.

    machine?: string
    onAction?: (action: Action) => void
    onProgress?: (message: string) => void
    runner?: Runner

    Injectable execution boundary. Defaults to a silent ProcessRunner.