@@ -3965,7 +3965,34 @@ interface ObjectConstructor {
39653965 * Copy the values of all of the enumerable own properties from one or more source objects to a
39663966 * target object. Returns the target object.
39673967 * @param target The target object to copy to.
3968- * @param sources One or more source objects to copy properties from.
3968+ * @param source The source object from which to copy properties.
3969+ */
3970+ assign < T , U > ( target : T , source : U ) : T & U ;
3971+
3972+ /**
3973+ * Copy the values of all of the enumerable own properties from one or more source objects to a
3974+ * target object. Returns the target object.
3975+ * @param target The target object to copy to.
3976+ * @param source1 The first source object from which to copy properties.
3977+ * @param source2 The second source object from which to copy properties.
3978+ */
3979+ assign < T , U , V > ( target : T , source1 : U , source2 : V ) : T & U & V ;
3980+
3981+ /**
3982+ * Copy the values of all of the enumerable own properties from one or more source objects to a
3983+ * target object. Returns the target object.
3984+ * @param target The target object to copy to.
3985+ * @param source1 The first source object from which to copy properties.
3986+ * @param source2 The second source object from which to copy properties.
3987+ * @param source3 The third source object from which to copy properties.
3988+ */
3989+ assign < T , U , V , W > ( target : T , source1 : U , source2 : V , source3 : W ) : T & U & V & W ;
3990+
3991+ /**
3992+ * Copy the values of all of the enumerable own properties from one or more source objects to a
3993+ * target object. Returns the target object.
3994+ * @param target The target object to copy to.
3995+ * @param sources One or more source objects from which to copy properties
39693996 */
39703997 assign ( target : any , ...sources : any [ ] ) : any ;
39713998
0 commit comments