| 374 | // ── Section 10: Interactive prompts ────────────────────────────────────── |
| 375 | |
| 376 | export interface InteractiveAnswers { |
| 377 | source: 'url' | 'dir' | 'repo'; |
| 378 | target: string; |
| 379 | mode: 'default' | 'ultra'; |
| 380 | out: string; |
| 381 | } |
| 382 | |
| 383 | export async function runInteractivePrompts(): Promise<InteractiveAnswers | null> { |
| 384 | const prompts = (await import('prompts')).default; |
nothing calls this directly
no outgoing calls
no test coverage detected