(questionStr: string)
| 59 | } |
| 60 | |
| 61 | export async function question(questionStr: string): Promise<string> { |
| 62 | return new Promise<string>( |
| 63 | resolve => rl.question(questionStr, response => resolve(response))); |
| 64 | } |
| 65 | |
| 66 | export interface Repo { |
| 67 | name: string; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…