You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/lib/core.d.ts
+1-6Lines changed: 1 addition & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1113,12 +1113,7 @@ interface Array<T> {
1113
1113
* Combines two or more arrays.
1114
1114
* @param items Additional items to add to the end of array1.
1115
1115
*/
1116
-
concat<UextendsT[]>(...items: U[]): T[];
1117
-
/**
1118
-
* Combines two or more arrays.
1119
-
* @param items Additional items to add to the end of array1.
1120
-
*/
1121
-
concat(...items: T[]): T[];
1116
+
concat(...items: (T|T[])[]): T[];
1122
1117
/**
1123
1118
* Adds all the elements of an array separated by the specified separator string.
1124
1119
* @param separator A string used to separate one element of an array from the next in the resulting String. If omitted, the array elements are separated with a comma.
0 commit comments