es-entity
Version:
ORM framework for Node js based on Ecmascript 6 and Typescript.
16 lines (13 loc) • 333 B
text/typescript
import MsSqlServer from './MsSqlServer.js';
import Mysql from './Mysql.js';
import OracleDb from './Oracle.js';
import PostGreSql from './PostGreSql.js';
import SqlLite from './SQLite.js';
export default {
MsSqlServer,
Mysql,
OracleDb,
PostGreSql,
SqlLite
};
export { MsSqlServer, Mysql, OracleDb, PostGreSql, SqlLite };