gespenst API - v0.1.1
    Preparing search index...

    Interface BashKitAddonOptions

    Configuration for a BashKit-backed terminal addon.

    interface BashKitAddonOptions {
        bash?: BashOptions;
        connection?: TerminalConnectionOptions;
        historyLimit?: number;
        maxBufferedOutputBytes?: number;
        prompt?: string;
        wasm?: BashKitWasmSource;
    }

    Hierarchy (View Summary)

    Index
    bash?: BashOptions

    BashKit interpreter configuration. The interactive profile is used by default.

    Backpressure and cancellation policy passed to the native terminal connection.

    historyLimit?: number

    Maximum retained command-history entries.

    100

    maxBufferedOutputBytes?: number

    Maximum output bytes waiting behind terminal backpressure.

    1048576

    prompt?: string

    Static prompt drawn by the terminal-side line editor.

    'bash $ '

    Custom BashKit WebAssembly source for self-hosted deployments.