@@ -517,7 +517,7 @@ interface TemplateStringsArray extends ReadonlyArray<string> {
517517
518518/**
519519 * The type of `import.meta`.
520- *
520+ *
521521 * If you need to declare that a given property exists on `import.meta`,
522522 * this type may be augmented via interface merging.
523523 */
@@ -1081,7 +1081,6 @@ interface ReadonlyArray<T> {
10811081 * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.
10821082 */
10831083 reduce ( callbackfn : ( previousValue : T , currentValue : T , currentIndex : number , array : ReadonlyArray < T > ) => T ) : T ;
1084- reduce ( callbackfn : ( previousValue : T , currentValue : T , currentIndex : number , array : ReadonlyArray < T > ) => T , initialValue : T ) : T ;
10851084 /**
10861085 * Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
10871086 * @param callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.
@@ -1094,7 +1093,6 @@ interface ReadonlyArray<T> {
10941093 * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.
10951094 */
10961095 reduceRight ( callbackfn : ( previousValue : T , currentValue : T , currentIndex : number , array : ReadonlyArray < T > ) => T ) : T ;
1097- reduceRight ( callbackfn : ( previousValue : T , currentValue : T , currentIndex : number , array : ReadonlyArray < T > ) => T , initialValue : T ) : T ;
10981096 /**
10991097 * Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
11001098 * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.
@@ -1240,7 +1238,6 @@ interface Array<T> {
12401238 * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.
12411239 */
12421240 reduce ( callbackfn : ( previousValue : T , currentValue : T , currentIndex : number , array : T [ ] ) => T ) : T ;
1243- reduce ( callbackfn : ( previousValue : T , currentValue : T , currentIndex : number , array : T [ ] ) => T , initialValue : T ) : T ;
12441241 /**
12451242 * Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
12461243 * @param callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.
@@ -1253,7 +1250,6 @@ interface Array<T> {
12531250 * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.
12541251 */
12551252 reduceRight ( callbackfn : ( previousValue : T , currentValue : T , currentIndex : number , array : T [ ] ) => T ) : T ;
1256- reduceRight ( callbackfn : ( previousValue : T , currentValue : T , currentIndex : number , array : T [ ] ) => T , initialValue : T ) : T ;
12571253 /**
12581254 * Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
12591255 * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.
@@ -1721,7 +1717,6 @@ interface Int8Array {
17211717 * instead of an array value.
17221718 */
17231719 reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Int8Array ) => number ) : number ;
1724- reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Int8Array ) => number , initialValue : number ) : number ;
17251720
17261721 /**
17271722 * Calls the specified callback function for all the elements in an array. The return value of
@@ -1746,7 +1741,6 @@ interface Int8Array {
17461741 * argument instead of an array value.
17471742 */
17481743 reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Int8Array ) => number ) : number ;
1749- reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Int8Array ) => number , initialValue : number ) : number ;
17501744
17511745 /**
17521746 * Calls the specified callback function for all the elements in an array, in descending order.
@@ -1990,7 +1984,6 @@ interface Uint8Array {
19901984 * instead of an array value.
19911985 */
19921986 reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Uint8Array ) => number ) : number ;
1993- reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Uint8Array ) => number , initialValue : number ) : number ;
19941987
19951988 /**
19961989 * Calls the specified callback function for all the elements in an array. The return value of
@@ -2015,7 +2008,6 @@ interface Uint8Array {
20152008 * argument instead of an array value.
20162009 */
20172010 reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Uint8Array ) => number ) : number ;
2018- reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Uint8Array ) => number , initialValue : number ) : number ;
20192011
20202012 /**
20212013 * Calls the specified callback function for all the elements in an array, in descending order.
@@ -2259,7 +2251,6 @@ interface Uint8ClampedArray {
22592251 * instead of an array value.
22602252 */
22612253 reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Uint8ClampedArray ) => number ) : number ;
2262- reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Uint8ClampedArray ) => number , initialValue : number ) : number ;
22632254
22642255 /**
22652256 * Calls the specified callback function for all the elements in an array. The return value of
@@ -2284,7 +2275,6 @@ interface Uint8ClampedArray {
22842275 * argument instead of an array value.
22852276 */
22862277 reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Uint8ClampedArray ) => number ) : number ;
2287- reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Uint8ClampedArray ) => number , initialValue : number ) : number ;
22882278
22892279 /**
22902280 * Calls the specified callback function for all the elements in an array, in descending order.
@@ -2526,7 +2516,6 @@ interface Int16Array {
25262516 * instead of an array value.
25272517 */
25282518 reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Int16Array ) => number ) : number ;
2529- reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Int16Array ) => number , initialValue : number ) : number ;
25302519
25312520 /**
25322521 * Calls the specified callback function for all the elements in an array. The return value of
@@ -2551,7 +2540,6 @@ interface Int16Array {
25512540 * argument instead of an array value.
25522541 */
25532542 reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Int16Array ) => number ) : number ;
2554- reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Int16Array ) => number , initialValue : number ) : number ;
25552543
25562544 /**
25572545 * Calls the specified callback function for all the elements in an array, in descending order.
@@ -2796,7 +2784,6 @@ interface Uint16Array {
27962784 * instead of an array value.
27972785 */
27982786 reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Uint16Array ) => number ) : number ;
2799- reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Uint16Array ) => number , initialValue : number ) : number ;
28002787
28012788 /**
28022789 * Calls the specified callback function for all the elements in an array. The return value of
@@ -2821,7 +2808,6 @@ interface Uint16Array {
28212808 * argument instead of an array value.
28222809 */
28232810 reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Uint16Array ) => number ) : number ;
2824- reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Uint16Array ) => number , initialValue : number ) : number ;
28252811
28262812 /**
28272813 * Calls the specified callback function for all the elements in an array, in descending order.
@@ -3065,7 +3051,6 @@ interface Int32Array {
30653051 * instead of an array value.
30663052 */
30673053 reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Int32Array ) => number ) : number ;
3068- reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Int32Array ) => number , initialValue : number ) : number ;
30693054
30703055 /**
30713056 * Calls the specified callback function for all the elements in an array. The return value of
@@ -3090,7 +3075,6 @@ interface Int32Array {
30903075 * argument instead of an array value.
30913076 */
30923077 reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Int32Array ) => number ) : number ;
3093- reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Int32Array ) => number , initialValue : number ) : number ;
30943078
30953079 /**
30963080 * Calls the specified callback function for all the elements in an array, in descending order.
@@ -3333,7 +3317,6 @@ interface Uint32Array {
33333317 * instead of an array value.
33343318 */
33353319 reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Uint32Array ) => number ) : number ;
3336- reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Uint32Array ) => number , initialValue : number ) : number ;
33373320
33383321 /**
33393322 * Calls the specified callback function for all the elements in an array. The return value of
@@ -3358,7 +3341,6 @@ interface Uint32Array {
33583341 * argument instead of an array value.
33593342 */
33603343 reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Uint32Array ) => number ) : number ;
3361- reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Uint32Array ) => number , initialValue : number ) : number ;
33623344
33633345 /**
33643346 * Calls the specified callback function for all the elements in an array, in descending order.
@@ -3602,7 +3584,6 @@ interface Float32Array {
36023584 * instead of an array value.
36033585 */
36043586 reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Float32Array ) => number ) : number ;
3605- reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Float32Array ) => number , initialValue : number ) : number ;
36063587
36073588 /**
36083589 * Calls the specified callback function for all the elements in an array. The return value of
@@ -3627,7 +3608,6 @@ interface Float32Array {
36273608 * argument instead of an array value.
36283609 */
36293610 reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Float32Array ) => number ) : number ;
3630- reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Float32Array ) => number , initialValue : number ) : number ;
36313611
36323612 /**
36333613 * Calls the specified callback function for all the elements in an array, in descending order.
@@ -3872,7 +3852,6 @@ interface Float64Array {
38723852 * instead of an array value.
38733853 */
38743854 reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Float64Array ) => number ) : number ;
3875- reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Float64Array ) => number , initialValue : number ) : number ;
38763855
38773856 /**
38783857 * Calls the specified callback function for all the elements in an array. The return value of
@@ -3897,7 +3876,6 @@ interface Float64Array {
38973876 * argument instead of an array value.
38983877 */
38993878 reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Float64Array ) => number ) : number ;
3900- reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Float64Array ) => number , initialValue : number ) : number ;
39013879
39023880 /**
39033881 * Calls the specified callback function for all the elements in an array, in descending order.
0 commit comments