/** * Represents the database driver types supported by TypeORM. * Used in the `type` field of a TypeORM connection configuration. */ export type DatabaseType = 'postgres' | 'mysql' | 'mariadb' | 'sqlite' | 'better-sqlite3' | 'oracle' | 'mssql' | 'cockroachdb' | 'mongodb' | 'sqljs' | 'cordova' | 'react-native' | 'expo' | 'aurora-data-api' | 'aurora-data-api-pg' | 'sap' | 'spanner'; //# sourceMappingURL=database-type.d.ts.map