@cartridge-engine/keyboard-engine
    Preparing search index...

    Interface BaseKeyboard

    Common keyboard data shared by page layers and element keyboards.

    interface BaseKeyboard {
        actionKeysMap: Map<string, string[]>;
        globalKeyOverrides: Set<string>;
        penetrationKeys: KeyRule[];
        stoppedKeys: KeyRule[];
    }

    Hierarchy (View Summary)

    Index
    actionKeysMap: Map<string, string[]>

    Maps action IDs to the normalized keys that trigger them (screen-level, excludes focus targets).

    globalKeyOverrides: Set<string>

    Keys from globalKeys that this layer has overridden.

    penetrationKeys: KeyRule[]

    Key rules marked as transparent at the screen level (pass-through).

    stoppedKeys: KeyRule[]

    Key rules stopped at the screen level (propagation barrier).