You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
426 B
8 lines
426 B
import { ExtensibleObject } from '../types';
|
|
/**
|
|
* Arrays & POJOs merged recursively, other objects and value types are overridden
|
|
* If target is not a POJO or an Array, it will get source properties injected via shallow merge
|
|
* Source objects applied left to right. Mutates & returns target. Similar to lodash merge.
|
|
*/
|
|
export default function mixinDeep(target?: ExtensibleObject, ...sources: any[]): ExtensibleObject;
|