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

    Interface ModalMissUnhandledEvent

    Signal that the key was NOT handled by any mechanism visible to the miss detector — a miss. The remaining fields describe the key.

    interface ModalMissUnhandledEvent {
        eventNames: string[];
        input: string;
        key: unknown;
        miss: true;
    }
    Index
    eventNames: string[]

    Normalized key names for the key (e.g. "s", "ctrl+q").

    input: string

    The raw input string from the terminal (empty for special keys).

    key: unknown

    The raw key descriptor object (Ink's useInput second argument).

    miss: true

    Always true — the key was not handled.