glrs
    Preparing search index...

    Type Alias Capture

    type Capture = {
        onKey: (key: Key) => void;
        render: (columns: number) => Line[];
    }
    Index
    onKey: (key: Key) => void

    Every keypress, until you close. Nothing else sees them.

    render: (columns: number) => Line[]

    Draw the composer area. Called on every key, and on resize.