|
import { PostgreSQLConfiguration } from './../PostgreSQL/types/Configuration';
|
|
import { MySQLConfiguration } from './../MySQL/types/Configuration';
|
|
export type DbConfiguration = PostgreSQLConfiguration & {
|
|
type: 'postgresql';
|
|
} | MySQLConfiguration & {
|
|
type: 'mysql';
|
|
};
|