CIA Compliance Manager API Documentation - v1.1.6
    Preparing search index...

    Interface KeyboardShortcut

    Keyboard shortcut definition

    interface KeyboardShortcut {
        category: ShortcutCategory;
        description: string;
        enabled?: boolean;
        handler: () => void;
        id: string;
        keys: string;
        platformKeys?: Partial<Record<Platform, string>>;
    }
    Index

    Properties

    Category for grouping shortcuts

    description: string

    Human-readable description of what the shortcut does

    enabled?: boolean

    Whether the shortcut is enabled

    handler: () => void

    Handler function to execute when shortcut is triggered

    id: string

    Unique identifier for the shortcut

    keys: string

    Key combination (e.g., 'ctrl+1', 'ctrl+shift+n')

    platformKeys?: Partial<Record<Platform, string>>

    Platform-specific override (optional)