Skip to content

Commit cc4024e

Browse files
committed
undo changes to generated file
1 parent 2828062 commit cc4024e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

lib/lib.es2015.core.d.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
/*! *****************************************************************************
2-
Copyright (c) Microsoft Corporation. All rights reserved.
2+
Copyright (c) Microsoft Corporation. All rights reserved.
33
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
44
this file except in compliance with the License. You may obtain a copy of the
5-
License at http://www.apache.org/licenses/LICENSE-2.0
5+
License at http://www.apache.org/licenses/LICENSE-2.0
66
77
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
88
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
9-
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
10-
MERCHANTABLITY OR NON-INFRINGEMENT.
11-
9+
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
10+
MERCHANTABLITY OR NON-INFRINGEMENT.
11+
1212
See the Apache Version 2.0 License for specific language governing permissions
1313
and limitations under the License.
1414
***************************************************************************** */
@@ -283,7 +283,7 @@ interface ObjectConstructor {
283283
* @param target The target object to copy to.
284284
* @param source The source object from which to copy properties.
285285
*/
286-
assign<T extends {}, U>(target: T, source: U): T & U;
286+
assign<T, U>(target: T, source: U): T & U;
287287

288288
/**
289289
* Copy the values of all of the enumerable own properties from one or more source objects to a
@@ -292,7 +292,7 @@ interface ObjectConstructor {
292292
* @param source1 The first source object from which to copy properties.
293293
* @param source2 The second source object from which to copy properties.
294294
*/
295-
assign<T extends {}, U, V>(target: T, source1: U, source2: V): T & U & V;
295+
assign<T, U, V>(target: T, source1: U, source2: V): T & U & V;
296296

297297
/**
298298
* Copy the values of all of the enumerable own properties from one or more source objects to a
@@ -302,7 +302,7 @@ interface ObjectConstructor {
302302
* @param source2 The second source object from which to copy properties.
303303
* @param source3 The third source object from which to copy properties.
304304
*/
305-
assign<T extends {}, U, V, W>(target: T, source1: U, source2: V, source3: W): T & U & V & W;
305+
assign<T, U, V, W>(target: T, source1: U, source2: V, source3: W): T & U & V & W;
306306

307307
/**
308308
* Copy the values of all of the enumerable own properties from one or more source objects to a

0 commit comments

Comments
 (0)