(keybinding: Keybinding)
| 200 | } |
| 201 | |
| 202 | getKeys(keybinding: Keybinding): KeyId[] { |
| 203 | return [...(this.keysById.get(keybinding) ?? [])]; |
| 204 | } |
| 205 | |
| 206 | getDefinition(keybinding: Keybinding): KeybindingDefinition { |
| 207 | return this.definitions[keybinding]!; |
no test coverage detected