@@ -1635,7 +1635,7 @@ interface Int8Array {
1635
1635
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
1636
1636
* If thisArg is omitted, undefined is used as the this value.
1637
1637
*/
1638
- map ( callbackfn : ( this : void , value : number , index : number , array : Int8Array ) => number , thisArg : any ) : Int8Array ;
1638
+ map ( callbackfn : ( this : void , value : number , index : number , array : Int8Array ) => number , thisArg ? : any ) : Int8Array ;
1639
1639
1640
1640
/**
1641
1641
* Calls the specified callback function for all the elements in an array. The return value of
@@ -1902,7 +1902,7 @@ interface Uint8Array {
1902
1902
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
1903
1903
* If thisArg is omitted, undefined is used as the this value.
1904
1904
*/
1905
- map ( callbackfn : ( this : void , value : number , index : number , array : Uint8Array ) => number , thisArg : any ) : Uint8Array ;
1905
+ map ( callbackfn : ( this : void , value : number , index : number , array : Uint8Array ) => number , thisArg ? : any ) : Uint8Array ;
1906
1906
1907
1907
/**
1908
1908
* Calls the specified callback function for all the elements in an array. The return value of
@@ -2169,7 +2169,7 @@ interface Uint8ClampedArray {
2169
2169
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
2170
2170
* If thisArg is omitted, undefined is used as the this value.
2171
2171
*/
2172
- map ( callbackfn : ( this : void , value : number , index : number , array : Uint8ClampedArray ) => number , thisArg : any ) : Uint8ClampedArray ;
2172
+ map ( callbackfn : ( this : void , value : number , index : number , array : Uint8ClampedArray ) => number , thisArg ? : any ) : Uint8ClampedArray ;
2173
2173
2174
2174
/**
2175
2175
* Calls the specified callback function for all the elements in an array. The return value of
@@ -2434,7 +2434,7 @@ interface Int16Array {
2434
2434
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
2435
2435
* If thisArg is omitted, undefined is used as the this value.
2436
2436
*/
2437
- map ( callbackfn : ( this : void , value : number , index : number , array : Int16Array ) => number , thisArg : any ) : Int16Array ;
2437
+ map ( callbackfn : ( this : void , value : number , index : number , array : Int16Array ) => number , thisArg ? : any ) : Int16Array ;
2438
2438
2439
2439
/**
2440
2440
* Calls the specified callback function for all the elements in an array. The return value of
@@ -2702,7 +2702,7 @@ interface Uint16Array {
2702
2702
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
2703
2703
* If thisArg is omitted, undefined is used as the this value.
2704
2704
*/
2705
- map ( callbackfn : ( this : void , value : number , index : number , array : Uint16Array ) => number , thisArg : any ) : Uint16Array ;
2705
+ map ( callbackfn : ( this : void , value : number , index : number , array : Uint16Array ) => number , thisArg ? : any ) : Uint16Array ;
2706
2706
2707
2707
/**
2708
2708
* Calls the specified callback function for all the elements in an array. The return value of
@@ -3235,7 +3235,7 @@ interface Uint32Array {
3235
3235
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
3236
3236
* If thisArg is omitted, undefined is used as the this value.
3237
3237
*/
3238
- map ( callbackfn : ( this : void , value : number , index : number , array : Uint32Array ) => number , thisArg : any ) : Uint32Array ;
3238
+ map ( callbackfn : ( this : void , value : number , index : number , array : Uint32Array ) => number , thisArg ? : any ) : Uint32Array ;
3239
3239
3240
3240
/**
3241
3241
* Calls the specified callback function for all the elements in an array. The return value of
@@ -3502,7 +3502,7 @@ interface Float32Array {
3502
3502
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
3503
3503
* If thisArg is omitted, undefined is used as the this value.
3504
3504
*/
3505
- map ( callbackfn : ( this : void , value : number , index : number , array : Float32Array ) => number , thisArg : any ) : Float32Array ;
3505
+ map ( callbackfn : ( this : void , value : number , index : number , array : Float32Array ) => number , thisArg ? : any ) : Float32Array ;
3506
3506
3507
3507
/**
3508
3508
* Calls the specified callback function for all the elements in an array. The return value of
0 commit comments