oak-db/lib/types/configuration.d.ts

8 lines
279 B
TypeScript

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