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.
@@ -1187,6 +1187,7 @@ interface ConcatArray<T> {
1187
1187
join(separator?: string): string;
1188
1188
slice(start?: number,end?: number): T[];
1189
1189
}
1190
+
typeFlatten<T>=TextendsConcatArray<infer U> ? U : T;
1190
1191
1191
1192
interfaceArray<T>{
1192
1193
/**
@@ -1219,7 +1220,7 @@ interface Array<T> {
1219
1220
* Combines two or more arrays.
1220
1221
* @param items Additional items to add to the end of array1.
* Adds all the elements of an array separated by the specified separator string.
1225
1226
* @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