interface Key {
    sequence?: string;
    name?: string;
    ctrl?: boolean;
    meta?: boolean;
    shift?: boolean;
}

Properties

sequence?: string
name?: string
ctrl?: boolean
meta?: boolean
shift?: boolean