| 1 | import chalk from 'chalk'; |
| 2 | |
| 3 | interface Choice { |
| 4 | name: string; |
| 5 | value: string; |
| 6 | description?: string; |
| 7 | configured?: boolean; |
| 8 | detected?: boolean; |
| 9 | configuredLabel?: string; |
| 10 | preSelected?: boolean; |
| 11 | } |
| 12 | |
| 13 | interface Config { |
| 14 | message: string; |
nothing calls this directly
no outgoing calls
no test coverage detected