| 316 | } as const; |
| 317 | |
| 318 | interface CliOptions { |
| 319 | config?: string; |
| 320 | dialect?: string; |
| 321 | key?: string; |
| 322 | host?: string; |
| 323 | modelFilter?: string; |
| 324 | sweepFilter?: string; |
| 325 | delay: number; |
| 326 | maxModels: number; |
| 327 | verbose: boolean; |
| 328 | debug: boolean; |
| 329 | includeSymlinks: boolean; |
| 330 | dryRun: boolean; |
| 331 | sequential: boolean; |
| 332 | mergeModels: boolean; |
| 333 | } |
| 334 | |
| 335 | // Types: Config File |
| 336 |
nothing calls this directly
no outgoing calls
no test coverage detected