//#region src/object/merge.d.ts /** * Merges source objects into target object (shallow merge) * @param target - The target object * @param sources - The source objects * @returns Returns the target object * @example * const obj1 = { a: 1, b: { c: 2 } }; * const obj2 = { b: { d: 3 }, e: 4 }; * merge(obj1, obj2); // { a: 1, b: { d: 3 }, e: 4 } */ declare function merge(target: T, ...sources: S[]): T & S; //#endregion export { merge }; //# sourceMappingURL=merge.d.cts.map