23 lines
No EOL
796 B
TypeScript
23 lines
No EOL
796 B
TypeScript
export declare function isPlainObject(item: unknown): item is Record<keyof any, unknown>;
|
|
export interface DeepmergeOptions {
|
|
clone?: boolean;
|
|
}
|
|
/**
|
|
* Merge objects deeply.
|
|
* It will shallow copy React elements.
|
|
*
|
|
* If `options.clone` is set to `false` the source object will be merged directly into the target object.
|
|
*
|
|
* @example
|
|
* ```ts
|
|
* deepmerge({ a: { b: 1 }, d: 2 }, { a: { c: 2 }, d: 4 });
|
|
* // => { a: { b: 1, c: 2 }, d: 4 }
|
|
* ````
|
|
*
|
|
* @param target The target object.
|
|
* @param source The source object.
|
|
* @param options The merge options.
|
|
* @param options.clone Set to `false` to merge the source object directly into the target object.
|
|
* @returns The merged object.
|
|
*/
|
|
export default function deepmerge<T>(target: T, source: unknown, options?: DeepmergeOptions): T; |