linXiv frontend (TS/JS)
    Preparing search index...

    Interface ShortcutOverride

    A user-chosen rebinding for one shortcut id. Mirrors the modifiers/key shape captured off a KeyboardEvent (see captureOverride in lib/shortcuts).

    interface ShortcutOverride {
        alt: boolean;
        ctrl: boolean;
        key: string;
        shift: boolean;
    }
    Index
    alt: boolean
    ctrl: boolean
    key: string
    shift: boolean