| 7 | } from '../../src/server/db/schemaContract.js'; |
| 8 | |
| 9 | interface FixtureScriptOptions { |
| 10 | fromRef?: string; |
| 11 | outputPath: string; |
| 12 | dropTables: string[]; |
| 13 | dropColumns: string[]; |
| 14 | } |
| 15 | |
| 16 | function parseArgs(argv: string[]): FixtureScriptOptions { |
| 17 | const options: FixtureScriptOptions = { |
nothing calls this directly
no outgoing calls
no test coverage detected