Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
19 lines
775 B
Plaintext
19 lines
775 B
Plaintext
import deepMerge from 'deepmerge';
|
|
export { deepMerge };
|
|
/**
|
|
* Fully-featured deepMerge.
|
|
*
|
|
* Array handling: Arrays in the target object are combined with the source object's arrays.
|
|
*/
|
|
export declare function deepMergeWithCombinedArrays<T extends object>(obj1: object, obj2: object, options?: deepMerge.Options): T;
|
|
/**
|
|
* Fully-featured deepMerge.
|
|
*
|
|
* Array handling: Arrays in the target object are replaced by the source object's arrays.
|
|
*/
|
|
export declare function deepMergeWithSourceArrays<T extends object>(obj1: object, obj2: object): T;
|
|
/**
|
|
* Fully-featured deepMerge. Does not clone React components by default.
|
|
*/
|
|
export declare function deepMergeWithReactComponents<T extends object>(obj1: object, obj2: object): T;
|
|
//# sourceMappingURL=deepMerge.d.ts.map |