(questionText: string, options: string[])
| 131 | } |
| 132 | |
| 133 | export function selectionQuestion(questionText: string, options: string[]) { |
| 134 | return readlineSync.keyInSelect(options, `${questionText}\n`, { |
| 135 | cancel: false |
| 136 | }); |
| 137 | } |
| 138 | |
| 139 | function prompt(questionText: string, options?: readlineSync.BasicOptions) { |
| 140 | writeStdOut(questionText); |
no outgoing calls
no test coverage detected