| 2 | export type Dialect = 'mysql' | 'postgres' | 'sqlite' | 'mariadb' | 'mssql'; |
| 3 | |
| 4 | export interface Options { |
| 5 | dialect: Dialect; |
| 6 | storage?: any; |
| 7 | } |
| 8 | |
| 9 | export interface AutoOptions extends Options { |
| 10 | directory: any; |
nothing calls this directly
no outgoing calls
no test coverage detected