@@ -577,7 +577,7 @@ interface TemplateStringsArray extends ReadonlyArray<string> {
577577
578578/**
579579 * The type of `import.meta`.
580- *
580+ *
581581 * If you need to declare that a given property exists on `import.meta`,
582582 * this type may be augmented via interface merging.
583583 */
@@ -1141,7 +1141,6 @@ interface ReadonlyArray<T> {
11411141 * @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.
11421142 */
11431143 reduce ( callbackfn : ( previousValue : T , currentValue : T , currentIndex : number , array : ReadonlyArray < T > ) => T ) : T ;
1144- reduce ( callbackfn : ( previousValue : T , currentValue : T , currentIndex : number , array : ReadonlyArray < T > ) => T , initialValue : T ) : T ;
11451144 /**
11461145 * 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.
11471146 * @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.
@@ -1154,7 +1153,6 @@ interface ReadonlyArray<T> {
11541153 * @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.
11551154 */
11561155 reduceRight ( callbackfn : ( previousValue : T , currentValue : T , currentIndex : number , array : ReadonlyArray < T > ) => T ) : T ;
1157- reduceRight ( callbackfn : ( previousValue : T , currentValue : T , currentIndex : number , array : ReadonlyArray < T > ) => T , initialValue : T ) : T ;
11581156 /**
11591157 * 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.
11601158 * @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.
@@ -1300,7 +1298,6 @@ interface Array<T> {
13001298 * @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.
13011299 */
13021300 reduce ( callbackfn : ( previousValue : T , currentValue : T , currentIndex : number , array : T [ ] ) => T ) : T ;
1303- reduce ( callbackfn : ( previousValue : T , currentValue : T , currentIndex : number , array : T [ ] ) => T , initialValue : T ) : T ;
13041301 /**
13051302 * 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.
13061303 * @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.
@@ -1313,7 +1310,6 @@ interface Array<T> {
13131310 * @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.
13141311 */
13151312 reduceRight ( callbackfn : ( previousValue : T , currentValue : T , currentIndex : number , array : T [ ] ) => T ) : T ;
1316- reduceRight ( callbackfn : ( previousValue : T , currentValue : T , currentIndex : number , array : T [ ] ) => T , initialValue : T ) : T ;
13171313 /**
13181314 * 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.
13191315 * @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.
@@ -1791,7 +1787,6 @@ interface Int8Array {
17911787 * instead of an array value.
17921788 */
17931789 reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Int8Array ) => number ) : number ;
1794- reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Int8Array ) => number , initialValue : number ) : number ;
17951790
17961791 /**
17971792 * Calls the specified callback function for all the elements in an array. The return value of
@@ -1816,7 +1811,6 @@ interface Int8Array {
18161811 * argument instead of an array value.
18171812 */
18181813 reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Int8Array ) => number ) : number ;
1819- reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Int8Array ) => number , initialValue : number ) : number ;
18201814
18211815 /**
18221816 * Calls the specified callback function for all the elements in an array, in descending order.
@@ -2060,7 +2054,6 @@ interface Uint8Array {
20602054 * instead of an array value.
20612055 */
20622056 reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Uint8Array ) => number ) : number ;
2063- reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Uint8Array ) => number , initialValue : number ) : number ;
20642057
20652058 /**
20662059 * Calls the specified callback function for all the elements in an array. The return value of
@@ -2085,7 +2078,6 @@ interface Uint8Array {
20852078 * argument instead of an array value.
20862079 */
20872080 reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Uint8Array ) => number ) : number ;
2088- reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Uint8Array ) => number , initialValue : number ) : number ;
20892081
20902082 /**
20912083 * Calls the specified callback function for all the elements in an array, in descending order.
@@ -2329,7 +2321,6 @@ interface Uint8ClampedArray {
23292321 * instead of an array value.
23302322 */
23312323 reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Uint8ClampedArray ) => number ) : number ;
2332- reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Uint8ClampedArray ) => number , initialValue : number ) : number ;
23332324
23342325 /**
23352326 * Calls the specified callback function for all the elements in an array. The return value of
@@ -2354,7 +2345,6 @@ interface Uint8ClampedArray {
23542345 * argument instead of an array value.
23552346 */
23562347 reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Uint8ClampedArray ) => number ) : number ;
2357- reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Uint8ClampedArray ) => number , initialValue : number ) : number ;
23582348
23592349 /**
23602350 * Calls the specified callback function for all the elements in an array, in descending order.
@@ -2596,7 +2586,6 @@ interface Int16Array {
25962586 * instead of an array value.
25972587 */
25982588 reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Int16Array ) => number ) : number ;
2599- reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Int16Array ) => number , initialValue : number ) : number ;
26002589
26012590 /**
26022591 * Calls the specified callback function for all the elements in an array. The return value of
@@ -2621,7 +2610,6 @@ interface Int16Array {
26212610 * argument instead of an array value.
26222611 */
26232612 reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Int16Array ) => number ) : number ;
2624- reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Int16Array ) => number , initialValue : number ) : number ;
26252613
26262614 /**
26272615 * Calls the specified callback function for all the elements in an array, in descending order.
@@ -2866,7 +2854,6 @@ interface Uint16Array {
28662854 * instead of an array value.
28672855 */
28682856 reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Uint16Array ) => number ) : number ;
2869- reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Uint16Array ) => number , initialValue : number ) : number ;
28702857
28712858 /**
28722859 * Calls the specified callback function for all the elements in an array. The return value of
@@ -2891,7 +2878,6 @@ interface Uint16Array {
28912878 * argument instead of an array value.
28922879 */
28932880 reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Uint16Array ) => number ) : number ;
2894- reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Uint16Array ) => number , initialValue : number ) : number ;
28952881
28962882 /**
28972883 * Calls the specified callback function for all the elements in an array, in descending order.
@@ -3135,7 +3121,6 @@ interface Int32Array {
31353121 * instead of an array value.
31363122 */
31373123 reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Int32Array ) => number ) : number ;
3138- reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Int32Array ) => number , initialValue : number ) : number ;
31393124
31403125 /**
31413126 * Calls the specified callback function for all the elements in an array. The return value of
@@ -3160,7 +3145,6 @@ interface Int32Array {
31603145 * argument instead of an array value.
31613146 */
31623147 reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Int32Array ) => number ) : number ;
3163- reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Int32Array ) => number , initialValue : number ) : number ;
31643148
31653149 /**
31663150 * Calls the specified callback function for all the elements in an array, in descending order.
@@ -3403,7 +3387,6 @@ interface Uint32Array {
34033387 * instead of an array value.
34043388 */
34053389 reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Uint32Array ) => number ) : number ;
3406- reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Uint32Array ) => number , initialValue : number ) : number ;
34073390
34083391 /**
34093392 * Calls the specified callback function for all the elements in an array. The return value of
@@ -3428,7 +3411,6 @@ interface Uint32Array {
34283411 * argument instead of an array value.
34293412 */
34303413 reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Uint32Array ) => number ) : number ;
3431- reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Uint32Array ) => number , initialValue : number ) : number ;
34323414
34333415 /**
34343416 * Calls the specified callback function for all the elements in an array, in descending order.
@@ -3672,7 +3654,6 @@ interface Float32Array {
36723654 * instead of an array value.
36733655 */
36743656 reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Float32Array ) => number ) : number ;
3675- reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Float32Array ) => number , initialValue : number ) : number ;
36763657
36773658 /**
36783659 * Calls the specified callback function for all the elements in an array. The return value of
@@ -3697,7 +3678,6 @@ interface Float32Array {
36973678 * argument instead of an array value.
36983679 */
36993680 reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Float32Array ) => number ) : number ;
3700- reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Float32Array ) => number , initialValue : number ) : number ;
37013681
37023682 /**
37033683 * Calls the specified callback function for all the elements in an array, in descending order.
@@ -3942,7 +3922,6 @@ interface Float64Array {
39423922 * instead of an array value.
39433923 */
39443924 reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Float64Array ) => number ) : number ;
3945- reduce ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Float64Array ) => number , initialValue : number ) : number ;
39463925
39473926 /**
39483927 * Calls the specified callback function for all the elements in an array. The return value of
@@ -3967,7 +3946,6 @@ interface Float64Array {
39673946 * argument instead of an array value.
39683947 */
39693948 reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Float64Array ) => number ) : number ;
3970- reduceRight ( callbackfn : ( previousValue : number , currentValue : number , currentIndex : number , array : Float64Array ) => number , initialValue : number ) : number ;
39713949
39723950 /**
39733951 * Calls the specified callback function for all the elements in an array, in descending order.
0 commit comments