()
| 43 | let chordTimeout: NodeJS.Timeout = null; |
| 44 | |
| 45 | function resetChord() { |
| 46 | activeChord = null; |
| 47 | if (chordTimeout) { |
| 48 | clearTimeout(chordTimeout); |
| 49 | chordTimeout = null; |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | function setActiveChord(activeChordArg: string) { |
| 54 | getApi().setKeyboardChordMode(); |
no outgoing calls
no test coverage detected