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.
982
982
*/
983
-
concat(...items: T[][]): T[];
983
+
concat(...items: ReadonlyArray<T>[]): T[];
984
984
/**
985
985
* Combines two or more arrays.
986
986
* @param items Additional items to add to the end of array1.
987
987
*/
988
-
concat(...items: (T|T[])[]): T[];
988
+
concat(...items: (T|ReadonlyArray<T>)[]): T[];
989
989
/**
990
990
* Adds all the elements of an array separated by the specified separator string.
991
991
* @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.
@@ -1099,12 +1099,12 @@ interface Array<T> {
1099
1099
* Combines two or more arrays.
1100
1100
* @param items Additional items to add to the end of array1.
1101
1101
*/
1102
-
concat(...items: T[][]): T[];
1102
+
concat(...items: ReadonlyArray<T>[]): T[];
1103
1103
/**
1104
1104
* Combines two or more arrays.
1105
1105
* @param items Additional items to add to the end of array1.
1106
1106
*/
1107
-
concat(...items: (T|T[])[]): T[];
1107
+
concat(...items: (T|ReadonlyArray<T>)[]): T[];
1108
1108
/**
1109
1109
* Adds all the elements of an array separated by the specified separator string.
1110
1110
* @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