Trilium Frontend API
    Preparing search index...

    Interface AddKeystrokeInfoCategoryData

    A description of category of keystrokes accepted by the module:core/accessibility~Accessibility#addKeystrokeInfoCategory method.

    Top-level categories organize keystrokes and help users to find the right keystroke. Each category can have multiple groups of keystrokes that narrow down the context in which the keystrokes are available.

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

    interface AddKeystrokeInfoCategoryData {
        description?: string;
        groups?: AddKeystrokeInfoGroupData[];
        id: string;
        label: string;
    }
    Index

    Properties

    description?: string

    The description of the category (optional).

    Groups of keystrokes within the category.

    id: string

    The unique id of the category.

    label: string

    The label of the category.