(q: string)
| 19 | |
| 20 | const rl = readline.createInterface({ input: process.stdin, output: process.stdout }); |
| 21 | const prompt = (q: string) => new Promise<string>((r) => rl.question(q, r)); |
| 22 | |
| 23 | console.log("Chat with Copilot (Ctrl+C to exit)\n"); |
| 24 |
no outgoing calls
no test coverage detected
searching dependent graphs…