@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.
Files changed (2) hide show
  1. package/index.ts +4 -2
  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
- export const DateUtil = dateUtil;
6
- export const DB = Schemas;
5
+ const DateUtil = dateUtil;
6
+ const DB = Schemas;
7
+
8
+ export default { DateUtil, DB };
7
9
 
8
10
  // ---------NotiHub Types ---------------------------------------------------------------
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@amohamud23/notihub",
3
- "version": "1.0.39",
3
+ "version": "1.0.40",
4
4
  "description": "Notihub Package",
5
5
  "main": "./index.ts",
6
6
  "types": "./types/index.d.ts",