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

    Interface RenderRow

    One rendered row and its cell-level details.

    interface RenderRow {
        cells: readonly RenderCell[];
        selection: RenderSelection | null;
        text: string;
        wrapContinuation: boolean;
        wrapped: boolean;
        y: number;
    }
    Index
    cells: readonly RenderCell[]

    Renderable cells in column order.

    selection: RenderSelection | null

    Selected column range, if any.

    text: string

    Row text with visual gaps preserved and unused trailing columns omitted.

    wrapContinuation: boolean

    Whether this row continues a preceding wrapped row.

    wrapped: boolean

    Whether this row wraps into the following row.

    y: number

    Zero-based row in the current viewport.