-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.ts
More file actions
30 lines (26 loc) · 1.09 KB
/
index.ts
File metadata and controls
30 lines (26 loc) · 1.09 KB
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
export * from './repository';
export * from './query';
export * from './base.model';
export * from './decorators/model';
export * from './decorators/field';
export * from './decorators/relationships';
//Interfces
export * from './interfaces/model.interface';
export * from './interfaces/current.model.interface';
export * from './interfaces/field.options.interface';
export * from './interfaces/model.alllist.options.interface';
export * from './interfaces/model.options.interface';
export * from './interfaces/relationship.options.interface';
export * from './interfaces/observe.load.model.interface';
export * from './interfaces/observe.remove.model.interface';
export * from './interfaces/observe.save.model.interface';
export * from './interfaces/global.config.interface';
//Utils
export * from './utils/case-conversion';
/*
export { initializeApp } from 'firebase/app';
export { getFirestore, initializeFirestore } from 'firebase/firestore';
export { getFunctions, httpsCallable } from "firebase/functions";
export { getAnalytics } from 'firebase/analytics';
export { getAuth } from 'firebase/auth';
*/