@orion-js/helpers 3.2.40 → 3.2.48

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.
@@ -1,5 +1 @@
1
- interface CreateMapItemsMap<T> {
2
- [key: string]: T;
3
- }
4
- export default function createMap<T>(array: Array<T>, key?: string): CreateMapItemsMap<T>;
5
- export {};
1
+ export default function createMap<T>(array: Array<T>, key?: string): Record<string, T>;
@@ -1,5 +1 @@
1
- interface CreateMapArrayItemsMap<T> {
2
- [key: string]: T;
3
- }
4
- export default function createMapArray<T>(array: Array<T>, key?: string): CreateMapArrayItemsMap<T>;
5
- export {};
1
+ export default function createMapArray<T>(array: Array<T>, key?: string): Record<string, Array<T>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orion-js/helpers",
3
- "version": "3.2.40",
3
+ "version": "3.2.48",
4
4
  "main": "lib/index.js",
5
5
  "author": "nicolaslopezj",
6
6
  "license": "MIT",
@@ -23,5 +23,5 @@
23
23
  "publishConfig": {
24
24
  "access": "public"
25
25
  },
26
- "gitHead": "fcc9653145e922930f8ac5a132cf8bfa5fa7ba42"
26
+ "gitHead": "ff49b7ffd93c1a72e66c2ed93fdb056360e85e96"
27
27
  }