UNPKG

@types/parse-key

Version:
12 lines (10 loc) 203 B
interface KeyObject { name: string; ctrl: boolean; meta: boolean; shift: boolean; alt: boolean; sequence: string; } declare function parse(s: string): KeyObject; export = parse;