Trilium Frontend API
    Preparing search index...

    Interface KeystrokeInfo

    Information about the keystroke.

    interface KeystrokeInfo {
        altKey: boolean;
        ctrlKey: boolean;
        keyCode: number;
        metaKey: boolean;
        shiftKey: boolean;
    }
    Index

    Properties

    altKey: boolean

    Whether the Alt modifier was pressed.

    ctrlKey: boolean

    Whether the Ctrl modifier was pressed.

    keyCode: number

    The key code.

    metaKey: boolean

    Whether the Cmd modifier was pressed.

    shiftKey: boolean

    Whether the Shift modifier was pressed.