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

    Interface CoreTerminalOptions

    Initial options shared by headless and browser terminals.

    Browser terminals measure cell dimensions from their font and device pixel ratio. The explicit cell dimensions are primarily useful for the headless runtime.

    interface CoreTerminalOptions {
        cellHeightPx?: number;
        cellWidthPx?: number;
        cols?: number;
        defaultCursorBlink?: boolean;
        defaultCursorStyle?: CursorStyle;
        rows?: number;
        scrollbackLines?: number;
        theme?: TerminalTheme;
    }

    Hierarchy (View Summary)

    Index
    cellHeightPx?: number

    18 in the headless runtime.

    cellWidthPx?: number

    9 in the headless runtime.

    cols?: number

    80

    defaultCursorBlink?: boolean

    Whether the default cursor blinks.

    false

    defaultCursorStyle?: CursorStyle

    Default cursor shape used until an application changes it.

    'block'

    rows?: number

    24

    scrollbackLines?: number

    10000

    DEFAULT_THEME