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
* Adds all the elements of an array separated by the specified separator string.
1091
1091
* @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.
@@ -1181,6 +1181,7 @@ interface ConcatArray<T> {
1181
1181
join(separator?: string): string;
1182
1182
slice(start?: number,end?: number): T[];
1183
1183
}
1184
+
typeConcatFlatten<T>=TextendsConcatArray<infer U> ? U : T;
1184
1185
1185
1186
interfaceArray<T>{
1186
1187
/**
@@ -1213,7 +1214,7 @@ interface Array<T> {
1213
1214
* Combines two or more arrays.
1214
1215
* @param items Additional items to add to the end of array1.
* Adds all the elements of an array separated by the specified separator string.
1219
1220
* @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