@amohamud23/notihub 1.0.39 → 1.0.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.ts +4 -2
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -2,7 +2,9 @@ import dateUtil from "./lib/util/DateUtil";
|
|
|
2
2
|
import Schemas from "./lib/models/index";
|
|
3
3
|
|
|
4
4
|
// ---------NotiHub Utils ---------------------------------------------------------------
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
const DateUtil = dateUtil;
|
|
6
|
+
const DB = Schemas;
|
|
7
|
+
|
|
8
|
+
export default { DateUtil, DB };
|
|
7
9
|
|
|
8
10
|
// ---------NotiHub Types ---------------------------------------------------------------
|