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

    Interface CompositionBrokenEvent

    Fired when a key with no matching entry breaks a pending chain: the pending state is cleared and the key falls through to lower pipeline stages (unless the breaking key is swallowed).

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

    The key that broke the chain.

    type: "broken"

    Event discriminant — always "broken".