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

    Interface RenderCursor

    Cursor state for a render frame.

    interface RenderCursor {
        blinking: boolean;
        passwordInput: boolean;
        style: CursorStyle;
        visible: boolean;
        wideTail: boolean;
        x: number | null;
        y: number | null;
    }
    Index
    blinking: boolean

    Whether the cursor should blink.

    passwordInput: boolean

    Whether the cursor is in a password-input field.

    Requested cursor shape.

    visible: boolean

    Whether the cursor should be drawn.

    wideTail: boolean

    Whether the cursor occupies the tail of a wide grapheme.

    x: number | null

    Zero-based cursor column, or null when absent.

    y: number | null

    Zero-based cursor row, or null when absent.