cnpmcore
Version:
Private NPM Registry for Enterprise
16 lines (15 loc) • 361 B
TypeScript
export declare enum DATABASE_TYPE {
MySQL = "MySQL",
PostgreSQL = "PostgreSQL",
SQLite = "SQLite"
}
export declare const database: {
type: string;
dialect: string;
client: string;
name: string | undefined;
host: string | undefined;
port: number | undefined;
user: string | undefined;
password: string | undefined;
};