UNPKG

874 BTypeScriptView Raw
1/**
2 * CORMO module
3 * @module cormo
4 */
5/**
6 * Exports [[#Connection]] class
7 * @memberOf cormo
8 */
9export { Connection, MongoDBConnection, MongoDBConnectionSettings, MySQLConnection, MySQLConnectionSettings, PostgreSQLConnection, PostgreSQLConnectionSettings, SQLite3Connection, SQLite3ConnectionSettings, } from './connection';
10/**
11 * Exports [[#BaseModel]] class
12 * @memberOf cormo
13 */
14export { BaseModel, ModelValueObject, ModelValueObjectWithId } from './model';
15/**
16 * Exports [[#Command]] class
17 * @memberOf cormo
18 */
19export { Command } from './command';
20export { QueryArray, QuerySingle, Query } from './query';
21export * from './decorators';
22/**
23 * Exports [[#types]] module
24 * @memberOf cormo
25 */
26import * as types from './types';
27export { types };
28export { IsolationLevel, Transaction } from './transaction';
29export * from './logger';
30export * from './adapters';