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

    Interface MappingKeyBrokenEvent

    Fired when a mismatched key breaks a pending mapping-key sequence: the pending state is cleared and the key falls through to lower pipeline stages (unless the breaking key is swallowed).

    interface MappingKeyBrokenEvent {
        key: string;
        type: "broken";
    }
    Index
    key: string

    The key that broke the sequence.

    type: "broken"

    Event discriminant — always "broken".