| 13 | import { render } from "./generators/index.js"; |
| 14 | import { formats, type Format, type ProviderSource, type RenderTarget } from "./types.js"; |
| 15 | |
| 16 | interface GenerateOptions { |
| 17 | input: string; |
| 18 | output: string; |
| 19 | provider: string; |
| 20 | format: string; |
| 21 | } |
| 22 | |
| 23 | const program = new Command(); |
nothing calls this directly
no outgoing calls
no test coverage detected