This repository has been archived on 2026-03-06. You can view files and clone it, but cannot push or open issues or pull requests.
todo/client/node_modules/styled-components/dist/utils/mixinDeep.d.ts

7 lines
354 B
TypeScript
Raw Normal View History

2025-06-13 06:04:40 +00: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;