(key: string)
| 68 | type CommandFunc = string | [string, boolean, any] | (() => void); |
| 69 | |
| 70 | const isModifier = (key: string): key is keyof ModifierMap => |
| 71 | key in modifierNames; |
| 72 | |
| 73 | const parseShortcut = (pattern: string): Shortcut => { |
| 74 | const shortcut = {} as Shortcut; |
no outgoing calls
no test coverage detected
searching dependent graphs…