@@ -1871,10 +1871,10 @@ interface Int8Array {
1871
1871
* @param target If target is negative, it is treated as length+target where length is the
1872
1872
* length of the array.
1873
1873
* @param start If start is negative, it is treated as length+start. If end is negative, it
1874
- * is treated as length+end. If start is omitted, `0` is used.
1874
+ * is treated as length+end.
1875
1875
* @param end If not specified, length of the this object is used as its default value.
1876
1876
*/
1877
- copyWithin ( target : number , start ? : number , end ?: number ) : this;
1877
+ copyWithin ( target : number , start : number , end ?: number ) : this;
1878
1878
1879
1879
/**
1880
1880
* Determines whether all the members of an array satisfy the specified test.
@@ -2153,10 +2153,10 @@ interface Uint8Array {
2153
2153
* @param target If target is negative, it is treated as length+target where length is the
2154
2154
* length of the array.
2155
2155
* @param start If start is negative, it is treated as length+start. If end is negative, it
2156
- * is treated as length+end. If start is omitted, `0` is used.
2156
+ * is treated as length+end.
2157
2157
* @param end If not specified, length of the this object is used as its default value.
2158
2158
*/
2159
- copyWithin ( target : number , start ? : number , end ?: number ) : this;
2159
+ copyWithin ( target : number , start : number , end ?: number ) : this;
2160
2160
2161
2161
/**
2162
2162
* Determines whether all the members of an array satisfy the specified test.
@@ -2435,10 +2435,10 @@ interface Uint8ClampedArray {
2435
2435
* @param target If target is negative, it is treated as length+target where length is the
2436
2436
* length of the array.
2437
2437
* @param start If start is negative, it is treated as length+start. If end is negative, it
2438
- * is treated as length+end. If start is omitted, `0` is used.
2438
+ * is treated as length+end.
2439
2439
* @param end If not specified, length of the this object is used as its default value.
2440
2440
*/
2441
- copyWithin ( target : number , start ? : number , end ?: number ) : this;
2441
+ copyWithin ( target : number , start : number , end ?: number ) : this;
2442
2442
2443
2443
/**
2444
2444
* Determines whether all the members of an array satisfy the specified test.
@@ -2716,10 +2716,10 @@ interface Int16Array {
2716
2716
* @param target If target is negative, it is treated as length+target where length is the
2717
2717
* length of the array.
2718
2718
* @param start If start is negative, it is treated as length+start. If end is negative, it
2719
- * is treated as length+end. If start is omitted, `0` is used.
2719
+ * is treated as length+end.
2720
2720
* @param end If not specified, length of the this object is used as its default value.
2721
2721
*/
2722
- copyWithin ( target : number , start ? : number , end ?: number ) : this;
2722
+ copyWithin ( target : number , start : number , end ?: number ) : this;
2723
2723
2724
2724
/**
2725
2725
* Determines whether all the members of an array satisfy the specified test.
@@ -2998,10 +2998,10 @@ interface Uint16Array {
2998
2998
* @param target If target is negative, it is treated as length+target where length is the
2999
2999
* length of the array.
3000
3000
* @param start If start is negative, it is treated as length+start. If end is negative, it
3001
- * is treated as length+end. If start is omitted, `0` is used.
3001
+ * is treated as length+end.
3002
3002
* @param end If not specified, length of the this object is used as its default value.
3003
3003
*/
3004
- copyWithin ( target : number , start ? : number , end ?: number ) : this;
3004
+ copyWithin ( target : number , start : number , end ?: number ) : this;
3005
3005
3006
3006
/**
3007
3007
* Determines whether all the members of an array satisfy the specified test.
@@ -3280,10 +3280,10 @@ interface Int32Array {
3280
3280
* @param target If target is negative, it is treated as length+target where length is the
3281
3281
* length of the array.
3282
3282
* @param start If start is negative, it is treated as length+start. If end is negative, it
3283
- * is treated as length+end. If start is omitted, `0` is used.
3283
+ * is treated as length+end.
3284
3284
* @param end If not specified, length of the this object is used as its default value.
3285
3285
*/
3286
- copyWithin ( target : number , start ? : number , end ?: number ) : this;
3286
+ copyWithin ( target : number , start : number , end ?: number ) : this;
3287
3287
3288
3288
/**
3289
3289
* Determines whether all the members of an array satisfy the specified test.
@@ -3562,10 +3562,10 @@ interface Uint32Array {
3562
3562
* @param target If target is negative, it is treated as length+target where length is the
3563
3563
* length of the array.
3564
3564
* @param start If start is negative, it is treated as length+start. If end is negative, it
3565
- * is treated as length+end. If start is omitted, `0` is used.
3565
+ * is treated as length+end.
3566
3566
* @param end If not specified, length of the this object is used as its default value.
3567
3567
*/
3568
- copyWithin ( target : number , start ? : number , end ?: number ) : this;
3568
+ copyWithin ( target : number , start : number , end ?: number ) : this;
3569
3569
3570
3570
/**
3571
3571
* Determines whether all the members of an array satisfy the specified test.
@@ -3843,10 +3843,10 @@ interface Float32Array {
3843
3843
* @param target If target is negative, it is treated as length+target where length is the
3844
3844
* length of the array.
3845
3845
* @param start If start is negative, it is treated as length+start. If end is negative, it
3846
- * is treated as length+end. If start is omitted, `0` is used.
3846
+ * is treated as length+end.
3847
3847
* @param end If not specified, length of the this object is used as its default value.
3848
3848
*/
3849
- copyWithin ( target : number , start ? : number , end ?: number ) : this;
3849
+ copyWithin ( target : number , start : number , end ?: number ) : this;
3850
3850
3851
3851
/**
3852
3852
* Determines whether all the members of an array satisfy the specified test.
@@ -4126,10 +4126,10 @@ interface Float64Array {
4126
4126
* @param target If target is negative, it is treated as length+target where length is the
4127
4127
* length of the array.
4128
4128
* @param start If start is negative, it is treated as length+start. If end is negative, it
4129
- * is treated as length+end. If start is omitted, `0` is used.
4129
+ * is treated as length+end.
4130
4130
* @param end If not specified, length of the this object is used as its default value.
4131
4131
*/
4132
- copyWithin ( target : number , start ? : number , end ?: number ) : this;
4132
+ copyWithin ( target : number , start : number , end ?: number ) : this;
4133
4133
4134
4134
/**
4135
4135
* Determines whether all the members of an array satisfy the specified test.
0 commit comments