@augment-vir/common 21.3.0 → 21.3.1

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,6 +1,9 @@
1
+ import { PartialDeep } from 'type-fest';
1
2
  /**
2
3
  * Accepts multiple objects and merges their key-value pairs recursively.
3
4
  *
4
5
  * Note that order matters! Each input object will overwrite the properties of the previous objects.
5
6
  */
6
- export declare function mergeDeep<T extends object>(...inputs: (T | Partial<T>)[]): T;
7
+ export declare function mergeDeep<T extends object>(...inputs: (T | PartialDeep<T, {
8
+ recurseIntoArrays: true;
9
+ }>)[]): T;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@augment-vir/common",
3
- "version": "21.3.0",
3
+ "version": "21.3.1",
4
4
  "homepage": "https://github.com/electrovir/augment-vir/tree/main/packages/common",
5
5
  "bugs": {
6
6
  "url": "https://github.com/electrovir/augment-vir/issues"