glrs
    Preparing search index...

    Type Alias Key

    A keypress, in glrs's own vocabulary rather than the renderer's.

    type Key = {
        ctrl: boolean;
        key: string;
        shift: boolean;
        text: string;
    }
    Index
    ctrl: boolean
    key: string

    "return", "escape", "up", "backspace", "a" …

    shift: boolean
    text: string

    The printable text this key produced. Empty for control keys.