Pilates
    Preparing search index...

    Interface KeyEvent

    interface KeyEvent {
        alt: boolean;
        ch?: string;
        ctrl: boolean;
        name?: KeyName;
        sequence: string;
        shift: boolean;
    }
    Index

    Properties

    alt: boolean
    ch?: string

    Printable Unicode character. Multi-byte CJK / emoji passes through unchanged. undefined for non-printables.

    ctrl: boolean
    name?: KeyName

    Semantic key name when one applies (arrows, F-keys, named specials).

    sequence: string

    Raw input bytes that produced this event.

    shift: boolean