Black Trigram (흑괘) - Korean Martial Arts Combat Simulator API - v0.7.11
    Preparing search index...

    Interface KeyboardActions

    Keyboard navigation actions

    interface KeyboardActions {
        onActivate?: () => void;
        onCancel?: () => void;
        onJump?: (to: "start" | "end") => void;
        onNavigate?: (direction: "left" | "right" | "up" | "down") => void;
        onTab?: (shiftKey: boolean) => void;
    }
    Index

    Properties

    onActivate?: () => void

    Action triggered on Enter or Space

    onCancel?: () => void

    Action triggered on Escape

    onJump?: (to: "start" | "end") => void

    Action triggered on Home/End keys

    onNavigate?: (direction: "left" | "right" | "up" | "down") => void

    Action triggered on arrow keys

    onTab?: (shiftKey: boolean) => void

    Action triggered on Tab key