UNPKG

@daysnap/utils

Version:
7 lines (5 loc) 195 B
/** * 深度合并对象,返回新对象 */ declare function merge<R extends Record<string, any> = any>(target: Record<string, any>, ...sources: Record<string, any>[]): R; export { merge };