Documentation
    Preparing search index...

    Interface HostKeyEvent

    Minimal structural subset of the DOM KeyboardEvent exposed to HostKeysBridge subscribe callbacks. DOM KeyboardEvent satisfies this structurally with no adapter needed. OS-bridge impls (Electron, Tauri — out of v1.4 scope) synthesize this from native key events.

    interface HostKeyEvent {
        altKey: boolean;
        code: string;
        ctrlKey: boolean;
        key: string;
        metaKey: boolean;
        repeat?: boolean;
        shiftKey: boolean;
    }
    Index

    Properties

    altKey: boolean
    code: string
    ctrlKey: boolean
    key: string
    metaKey: boolean
    repeat?: boolean

    True for OS autorepeat; the service filters these by default.

    shiftKey: boolean