Trilium Frontend API
    Preparing search index...

    Interface AddKeystrokeInfosData

    Description of keystrokes accepted by the module:core/accessibility~Accessibility#addKeystrokeInfos method.

    Keystrokes without specified groupId or categoryId go to the 'common' group in the 'contentEditing' category (default).

    See module:core/accessibility~Accessibility#addKeystrokeInfoCategory and module:core/accessibility~Accessibility#addKeystrokeInfoGroup.

    interface AddKeystrokeInfosData {
        categoryId?: string;
        groupId?: string;
        keystrokes: KeystrokeInfoDefinition[];
    }
    Index

    Properties

    categoryId?: string

    The category id the keystrokes belong to.

    groupId?: string

    The group id the keystrokes belong to.

    An array of keystroke definitions.