import type { Dictionary, UnionToIntersection } from "../types/global.types"; /** * Deep merge two objects over their enumerable properties. * * @param target - The object to merge into * @param source - The objects to use for merging */ export default function merge, U extends Dictionary[]>(target: T, ...sources: U): T & UnionToIntersection; //# sourceMappingURL=merge.d.ts.map