amis-rpc-design/node_modules/styled-components/native/dist/utils/mixinDeep.d.ts

7 lines
354 B
TypeScript
Raw Normal View History

2023-10-07 19:42:30 +08:00
/**
* 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: any, ...sources: any[]): any;