@@ -2081,7 +2081,7 @@ interface Array<T> {
2081
2081
*/
2082
2082
concat<U extends T[]>(...items: U[]): T[];
2083
2083
>concat : { <U extends T[]>(...items: U[]): T[]; (...items: T[]): T[]; }
2084
- > : ^^^ ^^^^^^^^^ ^^^^^ ^^ ^^^ ^^^^^^ ^^ ^^^ ^^^
2084
+ > : ^^^^ ^^^^^^^^^ ^^^^^ ^^ ^^^ ^^^^^^ ^^ ^^^ ^^^
2085
2085
>items : U[]
2086
2086
> : ^^^
2087
2087
@@ -2091,7 +2091,7 @@ interface Array<T> {
2091
2091
*/
2092
2092
concat(...items: T[]): T[];
2093
2093
>concat : { <U extends T[]>(...items: U[]): T[]; (...items: T[]): T[]; }
2094
- > : ^^^ ^^^^^^^^^ ^^^^^ ^^ ^^^ ^^^^^^ ^^ ^^^ ^^^
2094
+ > : ^^^^ ^^^^^^^^^ ^^^^^ ^^ ^^^ ^^^^^^ ^^ ^^^ ^^^
2095
2095
>items : T[]
2096
2096
> : ^^^
2097
2097
@@ -2286,7 +2286,7 @@ interface Array<T> {
2286
2286
*/
2287
2287
map<U>(callbackfn: (value: T, index: number, array: T[]) => U, thisArg?: any): U[];
2288
2288
>map : <U>(callbackfn: (value: T, index: number, array: T[]) => U, thisArg?: any) => U[]
2289
- > : ^ ^^ ^^ ^^ ^^^ ^^^^^
2289
+ > : ^^ ^^ ^^ ^^ ^^^ ^^^^^
2290
2290
>callbackfn : (value: T, index: number, array: T[]) => U
2291
2291
> : ^ ^^ ^^ ^^ ^^ ^^ ^^^^^
2292
2292
>value : T
@@ -2322,7 +2322,7 @@ interface Array<T> {
2322
2322
*/
2323
2323
reduce(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T, initialValue?: T): T;
2324
2324
>reduce : { (callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T, initialValue?: T): T; <U>(callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: T[]) => U, initialValue: U): U; }
2325
- > : ^^^ ^^ ^^ ^^^ ^^^ ^^^ ^^ ^^ ^^ ^^ ^^^ ^^^
2325
+ > : ^^^ ^^ ^^ ^^^ ^^^ ^^^^ ^^ ^^ ^^ ^^ ^^^ ^^^
2326
2326
>callbackfn : (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T
2327
2327
> : ^ ^^ ^^ ^^ ^^ ^^ ^^ ^^ ^^^^^
2328
2328
>previousValue : T
@@ -2343,7 +2343,7 @@ interface Array<T> {
2343
2343
*/
2344
2344
reduce<U>(callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: T[]) => U, initialValue: U): U;
2345
2345
>reduce : { (callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T, initialValue?: T): T; <U>(callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: T[]) => U, initialValue: U): U; }
2346
- > : ^^^ ^^ ^^ ^^^ ^^^ ^^^ ^^ ^^ ^^ ^^ ^^^ ^^^
2346
+ > : ^^^ ^^ ^^ ^^^ ^^^ ^^^^ ^^ ^^ ^^ ^^ ^^^ ^^^
2347
2347
>callbackfn : (previousValue: U, currentValue: T, currentIndex: number, array: T[]) => U
2348
2348
> : ^ ^^ ^^ ^^ ^^ ^^ ^^ ^^ ^^^^^
2349
2349
>previousValue : U
@@ -2364,7 +2364,7 @@ interface Array<T> {
2364
2364
*/
2365
2365
reduceRight(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T, initialValue?: T): T;
2366
2366
>reduceRight : { (callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T, initialValue?: T): T; <U>(callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: T[]) => U, initialValue: U): U; }
2367
- > : ^^^ ^^ ^^ ^^^ ^^^ ^^^ ^^ ^^ ^^ ^^ ^^^ ^^^
2367
+ > : ^^^ ^^ ^^ ^^^ ^^^ ^^^^ ^^ ^^ ^^ ^^ ^^^ ^^^
2368
2368
>callbackfn : (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T
2369
2369
> : ^ ^^ ^^ ^^ ^^ ^^ ^^ ^^ ^^^^^
2370
2370
>previousValue : T
@@ -2385,7 +2385,7 @@ interface Array<T> {
2385
2385
*/
2386
2386
reduceRight<U>(callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: T[]) => U, initialValue: U): U;
2387
2387
>reduceRight : { (callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T, initialValue?: T): T; <U>(callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: T[]) => U, initialValue: U): U; }
2388
- > : ^^^ ^^ ^^ ^^^ ^^^ ^^^ ^^ ^^ ^^ ^^ ^^^ ^^^
2388
+ > : ^^^ ^^ ^^ ^^^ ^^^ ^^^^ ^^ ^^ ^^ ^^ ^^^ ^^^
2389
2389
>callbackfn : (previousValue: U, currentValue: T, currentIndex: number, array: T[]) => U
2390
2390
> : ^ ^^ ^^ ^^ ^^ ^^ ^^ ^^ ^^^^^
2391
2391
>previousValue : U
@@ -2412,7 +2412,7 @@ interface Array<T> {
2412
2412
}
2413
2413
declare var Array: {
2414
2414
>Array : { (arrayLength?: number): any[]; <T>(arrayLength: number): T[]; <T>(...items: T[]): T[]; new (arrayLength?: number): any[]; new <T>(arrayLength: number): T[]; new <T>(...items: T[]): T[]; isArray(arg: any): boolean; prototype: Array<any>; }
2415
- > : ^^^ ^^^ ^^^ ^^^ ^^ ^^ ^^^ ^^^ ^^^^^ ^^ ^^^ ^^^^^^^ ^^^ ^^^ ^^^^^^^ ^^ ^^ ^^^ ^^^^^^^ ^^^^^ ^^ ^^^ ^^^^^^^^^^ ^^ ^^^ ^^^^^^^^^^^^^ ^^^
2415
+ > : ^^^ ^^^ ^^^ ^^^^^^ ^^ ^^^ ^^^^^^^^^ ^^ ^^^ ^^^^^^^ ^^^ ^^^ ^^^^^^^^^^ ^^ ^^^ ^^^^^^^^ ^^^^^ ^^ ^^^ ^^^^^^^^^^ ^^ ^^^ ^^^^^^^^^^^^^ ^^^
2416
2416
2417
2417
new (arrayLength?: number): any[];
2418
2418
>arrayLength : number
0 commit comments