-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
30 lines (22 loc) · 1.08 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// API
export { API } from "./src/API";
// BLL
export { BLL } from "./src/bll/BLL";
export { Mailer } from "./src/bll/Mailer";
export { User } from "./src/collections/user/User";
export { Session } from "./src/collections/session/Session";
export { UserBLL } from "./src/collections/user/UserBLL";
export { SessionBLL } from "./src/collections/session/SessionBLL";
// DAL
export { UserRepo } from "./src/collections/user/UserRepo";
export { SessionRepo } from "./src/collections/session/SessionRepo";
// TYPES
export { BLLOptions } from "./src/bll/BLL";
export { APIOptions } from "./src/API";
export { MainBLLType } from "./src/API";
export { MainRepository } from "./src/dal/mongodb/MainRepository";
export { GenericDocumentClass } from "./src/dal/mongodb/GenericDocumentClass";
export { GenericDocumentType } from "./src/dal/mongodb/interfaces/Generics";
export { GenericModelType } from "./src/dal/mongodb/interfaces/Generics";
export { GenericSubDocumentType } from "./src/dal/mongodb/interfaces/Generics";
export { GenericSubDocumentArrayType } from "./src/dal/mongodb/interfaces/Generics";