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

    Interface CreateBashKitShellOptions

    Options used to create one stateful BashKit browser shell.

    interface CreateBashKitShellOptions {
        bash?: BashOptions;
        historyLimit?: number;
        maxBufferedOutputBytes?: number;
        prompt?: string;
        wasm?: BashKitWasmSource;
    }

    Hierarchy (View Summary)

    Index
    bash?: BashOptions

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

    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.