* Inserts an action to release a single key. * * @param {(Key|string|number)} key the key to release. This key may be * specified as a Key value, a specific unicode code point, * or a string containing a single unicode code point. * @return {!Actions} a self reference.
(key)
| 783 | * @return {!Actions} a self reference. |
| 784 | */ |
| 785 | keyUp(key) { |
| 786 | return this.insert(this.keyboard_, this.keyboard_.keyUp(key)) |
| 787 | } |
| 788 | |
| 789 | /** |
| 790 | * Inserts a sequence of actions to type the provided key sequence. |
no test coverage detected