@@ -1889,10 +1889,10 @@ interface Int8Array {
1889
1889
* @param target If target is negative, it is treated as length+target where length is the
1890
1890
* length of the array.
1891
1891
* @param start If start is negative, it is treated as length+start. If end is negative, it
1892
- * is treated as length+end. If start is omitted, `0` is used.
1892
+ * is treated as length+end.
1893
1893
* @param end If not specified, length of the this object is used as its default value.
1894
1894
*/
1895
- copyWithin ( target : number , start ? : number , end ?: number ) : this;
1895
+ copyWithin ( target : number , start : number , end ?: number ) : this;
1896
1896
1897
1897
/**
1898
1898
* Determines whether all the members of an array satisfy the specified test.
@@ -2171,10 +2171,10 @@ interface Uint8Array {
2171
2171
* @param target If target is negative, it is treated as length+target where length is the
2172
2172
* length of the array.
2173
2173
* @param start If start is negative, it is treated as length+start. If end is negative, it
2174
- * is treated as length+end. If start is omitted, `0` is used.
2174
+ * is treated as length+end.
2175
2175
* @param end If not specified, length of the this object is used as its default value.
2176
2176
*/
2177
- copyWithin ( target : number , start ? : number , end ?: number ) : this;
2177
+ copyWithin ( target : number , start : number , end ?: number ) : this;
2178
2178
2179
2179
/**
2180
2180
* Determines whether all the members of an array satisfy the specified test.
@@ -2453,10 +2453,10 @@ interface Uint8ClampedArray {
2453
2453
* @param target If target is negative, it is treated as length+target where length is the
2454
2454
* length of the array.
2455
2455
* @param start If start is negative, it is treated as length+start. If end is negative, it
2456
- * is treated as length+end. If start is omitted, `0` is used.
2456
+ * is treated as length+end.
2457
2457
* @param end If not specified, length of the this object is used as its default value.
2458
2458
*/
2459
- copyWithin ( target : number , start ? : number , end ?: number ) : this;
2459
+ copyWithin ( target : number , start : number , end ?: number ) : this;
2460
2460
2461
2461
/**
2462
2462
* Determines whether all the members of an array satisfy the specified test.
@@ -2734,10 +2734,10 @@ interface Int16Array {
2734
2734
* @param target If target is negative, it is treated as length+target where length is the
2735
2735
* length of the array.
2736
2736
* @param start If start is negative, it is treated as length+start. If end is negative, it
2737
- * is treated as length+end. If start is omitted, `0` is used.
2737
+ * is treated as length+end.
2738
2738
* @param end If not specified, length of the this object is used as its default value.
2739
2739
*/
2740
- copyWithin ( target : number , start ? : number , end ?: number ) : this;
2740
+ copyWithin ( target : number , start : number , end ?: number ) : this;
2741
2741
2742
2742
/**
2743
2743
* Determines whether all the members of an array satisfy the specified test.
@@ -3016,10 +3016,10 @@ interface Uint16Array {
3016
3016
* @param target If target is negative, it is treated as length+target where length is the
3017
3017
* length of the array.
3018
3018
* @param start If start is negative, it is treated as length+start. If end is negative, it
3019
- * is treated as length+end. If start is omitted, `0` is used.
3019
+ * is treated as length+end.
3020
3020
* @param end If not specified, length of the this object is used as its default value.
3021
3021
*/
3022
- copyWithin ( target : number , start ? : number , end ?: number ) : this;
3022
+ copyWithin ( target : number , start : number , end ?: number ) : this;
3023
3023
3024
3024
/**
3025
3025
* Determines whether all the members of an array satisfy the specified test.
@@ -3298,10 +3298,10 @@ interface Int32Array {
3298
3298
* @param target If target is negative, it is treated as length+target where length is the
3299
3299
* length of the array.
3300
3300
* @param start If start is negative, it is treated as length+start. If end is negative, it
3301
- * is treated as length+end. If start is omitted, `0` is used.
3301
+ * is treated as length+end.
3302
3302
* @param end If not specified, length of the this object is used as its default value.
3303
3303
*/
3304
- copyWithin ( target : number , start ? : number , end ?: number ) : this;
3304
+ copyWithin ( target : number , start : number , end ?: number ) : this;
3305
3305
3306
3306
/**
3307
3307
* Determines whether all the members of an array satisfy the specified test.
@@ -3580,10 +3580,10 @@ interface Uint32Array {
3580
3580
* @param target If target is negative, it is treated as length+target where length is the
3581
3581
* length of the array.
3582
3582
* @param start If start is negative, it is treated as length+start. If end is negative, it
3583
- * is treated as length+end. If start is omitted, `0` is used.
3583
+ * is treated as length+end.
3584
3584
* @param end If not specified, length of the this object is used as its default value.
3585
3585
*/
3586
- copyWithin ( target : number , start ? : number , end ?: number ) : this;
3586
+ copyWithin ( target : number , start : number , end ?: number ) : this;
3587
3587
3588
3588
/**
3589
3589
* Determines whether all the members of an array satisfy the specified test.
@@ -3861,10 +3861,10 @@ interface Float32Array {
3861
3861
* @param target If target is negative, it is treated as length+target where length is the
3862
3862
* length of the array.
3863
3863
* @param start If start is negative, it is treated as length+start. If end is negative, it
3864
- * is treated as length+end. If start is omitted, `0` is used.
3864
+ * is treated as length+end.
3865
3865
* @param end If not specified, length of the this object is used as its default value.
3866
3866
*/
3867
- copyWithin ( target : number , start ? : number , end ?: number ) : this;
3867
+ copyWithin ( target : number , start : number , end ?: number ) : this;
3868
3868
3869
3869
/**
3870
3870
* Determines whether all the members of an array satisfy the specified test.
@@ -4144,10 +4144,10 @@ interface Float64Array {
4144
4144
* @param target If target is negative, it is treated as length+target where length is the
4145
4145
* length of the array.
4146
4146
* @param start If start is negative, it is treated as length+start. If end is negative, it
4147
- * is treated as length+end. If start is omitted, `0` is used.
4147
+ * is treated as length+end.
4148
4148
* @param end If not specified, length of the this object is used as its default value.
4149
4149
*/
4150
- copyWithin ( target : number , start ? : number , end ?: number ) : this;
4150
+ copyWithin ( target : number , start : number , end ?: number ) : this;
4151
4151
4152
4152
/**
4153
4153
* Determines whether all the members of an array satisfy the specified test.
0 commit comments