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
* @param items Additional items to add to the end of array1.
1002
1002
*/
1003
-
concat(...items: T[][]): T[];
1003
+
concat(...items: ReadonlyArray<T>[]): T[];
1004
1004
/**
1005
1005
* Combines two or more arrays.
1006
1006
* @param items Additional items to add to the end of array1.
1007
1007
*/
1008
-
concat(...items: (T | T[])[]): T[];
1008
+
concat(...items: (T | ReadonlyArray<T>)[]): T[];
1009
1009
/**
1010
1010
* Adds all the elements of an array separated by the specified separator string.
1011
1011
* @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.
@@ -1119,12 +1119,12 @@ interface Array<T> {
1119
1119
* Combines two or more arrays.
1120
1120
* @param items Additional items to add to the end of array1.
1121
1121
*/
1122
-
concat(...items: T[][]): T[];
1122
+
concat(...items: ReadonlyArray<T>[]): T[];
1123
1123
/**
1124
1124
* Combines two or more arrays.
1125
1125
* @param items Additional items to add to the end of array1.
1126
1126
*/
1127
-
concat(...items: (T | T[])[]): T[];
1127
+
concat(...items: (T | ReadonlyArray<T>)[]): T[];
1128
1128
/**
1129
1129
* Adds all the elements of an array separated by the specified separator string.
1130
1130
* @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