(path: string)
| 63 | }; |
| 64 | |
| 65 | function ensureDir(path: string): void { |
| 66 | if (!existsSync(path)) mkdirSync(path, { recursive: true }); |
| 67 | } |
| 68 | |
| 69 | async function getDefaultPrompts(): Promise<PromptIO> { |
| 70 | const { promptIO } = await import("../lib/prompts"); |
no outgoing calls
no test coverage detected