Documentation
    Preparing search index...

    Interface HotkeyHooks

    Hook for hotkey dispatch.

    interface HotkeyHooks {
        executeHotkeyFromForward(
            event: {
                altKey: boolean;
                code: string;
                ctrlKey: boolean;
                key: string;
                metaKey: boolean;
                shiftKey: boolean;
            },
        ): void;
    }
    Index

    Methods

    • Execute a forwarded hotkey from a napp.

      Parameters

      • event: {
            altKey: boolean;
            code: string;
            ctrlKey: boolean;
            key: string;
            metaKey: boolean;
            shiftKey: boolean;
        }

      Returns void