es-toolkit
Version:
A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.
127 lines • 5.97 kB
text/typescript
//#region src/compat/object/assignWith.d.ts
type AssignCustomizer = (objectValue: any, sourceValue: any, key?: string, object?: {}, source?: {}) => any;
/**
* Assigns own properties from one source object to a target object using a customizer function.
*
* @template T - The type of the target object.
* @template U - The type of the source object.
* @param object - The target object to which properties will be assigned.
* @param source - The source object whose properties will be assigned to the target object.
* @param customizer - The function to customize assigned values.
* @returns The updated target object with properties from the source object assigned.
*
* @example
* const target = { a: 1, b: 2 };
* const source = { b: 3, c: 4 };
* const result = assignWith(target, source, (objValue, srcValue) => {
* return objValue === undefined ? srcValue : objValue;
* });
* // => { a: 1, b: 2, c: 4 }
*/
declare function assignWith<T, U>(object: T, source: U, customizer: AssignCustomizer): T & U;
/**
* Assigns own properties from two source objects to a target object using a customizer function.
*
* @template T - The type of the target object.
* @template U - The type of the first source object.
* @template V - The type of the second source object.
* @param object - The target object to which properties will be assigned.
* @param source1 - The first source object whose properties will be assigned to the target object.
* @param source2 - The second source object whose properties will be assigned to the target object.
* @param customizer - The function to customize assigned values.
* @returns The updated target object with properties from the source objects assigned.
*
* @example
* const target = { a: 1 };
* const source1 = { b: 2 };
* const source2 = { c: 3 };
* const result = assignWith(target, source1, source2, (objValue, srcValue) => {
* return objValue === undefined ? srcValue : objValue;
* });
* // => { a: 1, b: 2, c: 3 }
*/
declare function assignWith<T, U, V>(object: T, source1: U, source2: V, customizer: AssignCustomizer): T & U & V;
/**
* Assigns own properties from three source objects to a target object using a customizer function.
*
* @template T - The type of the target object.
* @template U - The type of the first source object.
* @template V - The type of the second source object.
* @template W - The type of the third source object.
* @param object - The target object to which properties will be assigned.
* @param source1 - The first source object whose properties will be assigned to the target object.
* @param source2 - The second source object whose properties will be assigned to the target object.
* @param source3 - The third source object whose properties will be assigned to the target object.
* @param customizer - The function to customize assigned values.
* @returns The updated target object with properties from the source objects assigned.
*
* @example
* const target = { a: 1 };
* const source1 = { b: 2 };
* const source2 = { c: 3 };
* const source3 = { d: 4 };
* const result = assignWith(target, source1, source2, source3, (objValue, srcValue) => {
* return objValue === undefined ? srcValue : objValue;
* });
* // => { a: 1, b: 2, c: 3, d: 4 }
*/
declare function assignWith<T, U, V, W>(object: T, source1: U, source2: V, source3: W, customizer: AssignCustomizer): T & U & V & W;
/**
* Assigns own properties from four source objects to a target object using a customizer function.
*
* @template T - The type of the target object.
* @template U - The type of the first source object.
* @template V - The type of the second source object.
* @template W - The type of the third source object.
* @template X - The type of the fourth source object.
* @param object - The target object to which properties will be assigned.
* @param source1 - The first source object whose properties will be assigned to the target object.
* @param source2 - The second source object whose properties will be assigned to the target object.
* @param source3 - The third source object whose properties will be assigned to the target object.
* @param source4 - The fourth source object whose properties will be assigned to the target object.
* @param customizer - The function to customize assigned values.
* @returns The updated target object with properties from the source objects assigned.
*
* @example
* const target = { a: 1 };
* const source1 = { b: 2 };
* const source2 = { c: 3 };
* const source3 = { d: 4 };
* const source4 = { e: 5 };
* const result = assignWith(target, source1, source2, source3, source4, (objValue, srcValue) => {
* return objValue === undefined ? srcValue : objValue;
* });
* // => { a: 1, b: 2, c: 3, d: 4, e: 5 }
*/
declare function assignWith<T, U, V, W, X>(object: T, source1: U, source2: V, source3: W, source4: X, customizer: AssignCustomizer): T & U & V & W & X;
/**
* Returns the target object as-is.
*
* @template T - The type of the target object.
* @param object - The target object.
* @returns The target object.
*
* @example
* const target = { a: 1, b: 2 };
* const result = assignWith(target);
* // => { a: 1, b: 2 }
*/
declare function assignWith<T>(object: T): T;
/**
* Assigns own properties from multiple source objects to a target object using a customizer function.
*
* @template R - The type of the result.
* @param object - The target object to which properties will be assigned.
* @param otherArgs - The source objects and customizer function.
* @returns The updated target object with properties from the source objects assigned.
*
* @example
* const target = { a: 1 };
* const result = assignWith(target, { b: 2 }, { c: 3 }, (objValue, srcValue) => {
* return objValue === undefined ? srcValue : objValue;
* });
* // => { a: 1, b: 2, c: 3 }
*/
declare function assignWith<R>(object: any, ...otherArgs: any[]): R;
//#endregion
export { assignWith };