@augment-vir/common 20.0.0 → 20.0.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,7 +1,6 @@
|
|
|
1
|
-
export type BaseObject = Record<PropertyKey, unknown>;
|
|
2
1
|
/**
|
|
3
2
|
* Accepts multiple objects and merges their key-value pairs recursively.
|
|
4
3
|
*
|
|
5
4
|
* Note that order matters! Each input object will overwrite the properties of the previous objects.
|
|
6
5
|
*/
|
|
7
|
-
export declare function mergeDeep<T extends
|
|
6
|
+
export declare function mergeDeep<T extends object>(...inputs: (T | Partial<T>)[]): T;
|