Interface KeyCodeSchema

interface KeyCodeSchema {
    alt?: boolean;
    character?: string;
    ctrl?: boolean;
    key?: Partial<Key>;
    meta?: boolean;
    shift?: boolean;
}

Properties

alt?: boolean
character?: string
ctrl?: boolean
key?: Partial<Key>
meta?: boolean
shift?: boolean