@mongez/reinforcements 2.2.3 → 2.2.4

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/cjs/types.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare type GenericObject = Record<string, any>;
1
+ export declare type GenericObject<T = any> = Record<string, T>;
2
2
  //# sourceMappingURL=types.d.ts.map
package/esm/types.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare type GenericObject = Record<string, any>;
1
+ export declare type GenericObject<T = any> = Record<string, T>;
2
2
  //# sourceMappingURL=types.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mongez/reinforcements",
3
- "version": "2.2.3",
3
+ "version": "2.2.4",
4
4
  "description": "A lightweight package to give a massive reinforcements to variant types of data in Nodejs/Javascript",
5
5
  "main": "./cjs/index.js",
6
6
  "dependencies": {
@@ -31,5 +31,6 @@
31
31
  "author": "hassanzohdy",
32
32
  "license": "MIT",
33
33
  "module": "./esm/index.js",
34
+ "type": "commonjs",
34
35
  "typings": "./cjs/index.d.ts"
35
36
  }