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

    Interface MappingKeyConsumedEvent

    Fired when an exclusive pending mapping-key sequence silently consumes a mismatched key: the sequence keeps waiting and the key does not reach lower pipeline stages.

    interface MappingKeyConsumedEvent {
        key: string;
        type: "consumed";
    }
    Index
    key: string

    The mismatched key that was consumed.

    type: "consumed"

    Event discriminant — always "consumed".