()
| 148 | }; |
| 149 | |
| 150 | const render = (): void => { |
| 151 | lineCount = writePromptFrame( |
| 152 | output, |
| 153 | renderInstallPrompt(options, choices, selectedIndex), |
| 154 | lineCount, |
| 155 | ); |
| 156 | }; |
| 157 | |
| 158 | const onKeypress = (_input: string, key: { name?: string; ctrl?: boolean }): void => { |
| 159 | if (key.name === 'up') { |
no test coverage detected