UNPKG

mout

Version:

Modular Utilities

7 lines (6 loc) 187 B
/** * Mixes objects into the target object, recursively mixing existing child * objects. */ declare function deepMixIn(target: any, objects: any): any; export default deepMixIn;