| 22 | |
| 23 | declare module './src/index.js' { |
| 24 | interface QuestionMap { |
| 25 | stub: { answer?: string | boolean; message: string; default?: string }; |
| 26 | stub2: { answer?: string | boolean; message: string; default: string }; |
| 27 | stubSelect: { choices: string[] }; |
| 28 | failing: { message: string }; |
| 29 | list: { message: string }; |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | type TestQuestions = { |
nothing calls this directly
no outgoing calls
no test coverage detected