@@ -1655,7 +1655,7 @@ interface Int8Array {
1655
1655
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
1656
1656
* If thisArg is omitted, undefined is used as the this value.
1657
1657
*/
1658
- map(callbackfn: (this: void, value: number, index: number, array: Int8Array) => number, thisArg: any): Int8Array;
1658
+ map(callbackfn: (this: void, value: number, index: number, array: Int8Array) => number, thisArg? : any): Int8Array;
1659
1659
1660
1660
/**
1661
1661
* Calls the specified callback function for all the elements in an array. The return value of
@@ -1922,7 +1922,7 @@ interface Uint8Array {
1922
1922
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
1923
1923
* If thisArg is omitted, undefined is used as the this value.
1924
1924
*/
1925
- map(callbackfn: (this: void, value: number, index: number, array: Uint8Array) => number, thisArg: any): Uint8Array;
1925
+ map(callbackfn: (this: void, value: number, index: number, array: Uint8Array) => number, thisArg? : any): Uint8Array;
1926
1926
1927
1927
/**
1928
1928
* Calls the specified callback function for all the elements in an array. The return value of
@@ -2189,7 +2189,7 @@ interface Uint8ClampedArray {
2189
2189
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
2190
2190
* If thisArg is omitted, undefined is used as the this value.
2191
2191
*/
2192
- map(callbackfn: (this: void, value: number, index: number, array: Uint8ClampedArray) => number, thisArg: any): Uint8ClampedArray;
2192
+ map(callbackfn: (this: void, value: number, index: number, array: Uint8ClampedArray) => number, thisArg? : any): Uint8ClampedArray;
2193
2193
2194
2194
/**
2195
2195
* Calls the specified callback function for all the elements in an array. The return value of
@@ -2454,7 +2454,7 @@ interface Int16Array {
2454
2454
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
2455
2455
* If thisArg is omitted, undefined is used as the this value.
2456
2456
*/
2457
- map(callbackfn: (this: void, value: number, index: number, array: Int16Array) => number, thisArg: any): Int16Array;
2457
+ map(callbackfn: (this: void, value: number, index: number, array: Int16Array) => number, thisArg? : any): Int16Array;
2458
2458
2459
2459
/**
2460
2460
* Calls the specified callback function for all the elements in an array. The return value of
@@ -2722,7 +2722,7 @@ interface Uint16Array {
2722
2722
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
2723
2723
* If thisArg is omitted, undefined is used as the this value.
2724
2724
*/
2725
- map(callbackfn: (this: void, value: number, index: number, array: Uint16Array) => number, thisArg: any): Uint16Array;
2725
+ map(callbackfn: (this: void, value: number, index: number, array: Uint16Array) => number, thisArg? : any): Uint16Array;
2726
2726
2727
2727
/**
2728
2728
* Calls the specified callback function for all the elements in an array. The return value of
@@ -3255,7 +3255,7 @@ interface Uint32Array {
3255
3255
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
3256
3256
* If thisArg is omitted, undefined is used as the this value.
3257
3257
*/
3258
- map(callbackfn: (this: void, value: number, index: number, array: Uint32Array) => number, thisArg: any): Uint32Array;
3258
+ map(callbackfn: (this: void, value: number, index: number, array: Uint32Array) => number, thisArg? : any): Uint32Array;
3259
3259
3260
3260
/**
3261
3261
* Calls the specified callback function for all the elements in an array. The return value of
@@ -3522,7 +3522,7 @@ interface Float32Array {
3522
3522
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
3523
3523
* If thisArg is omitted, undefined is used as the this value.
3524
3524
*/
3525
- map(callbackfn: (this: void, value: number, index: number, array: Float32Array) => number, thisArg: any): Float32Array;
3525
+ map(callbackfn: (this: void, value: number, index: number, array: Float32Array) => number, thisArg? : any): Float32Array;
3526
3526
3527
3527
/**
3528
3528
* Calls the specified callback function for all the elements in an array. The return value of
0 commit comments