(keypress: ParsedKey)
| 195 | readonly input: string |
| 196 | |
| 197 | constructor(keypress: ParsedKey) { |
| 198 | super() |
| 199 | const [key, input] = parseKey(keypress) |
| 200 | |
| 201 | this.keypress = keypress |
| 202 | this.key = key |
| 203 | this.input = input |
| 204 | } |
| 205 | } |
| 206 |
nothing calls this directly
no test coverage detected