@@ -1849,10 +1849,10 @@ interface Int8Array {
1849
1849
* @param target If target is negative, it is treated as length+target where length is the
1850
1850
* length of the array.
1851
1851
* @param start If start is negative, it is treated as length+start. If end is negative, it
1852
- * is treated as length+end.
1852
+ * is treated as length+end. If start is omitted, `0` is used.
1853
1853
* @param end If not specified, length of the this object is used as its default value.
1854
1854
*/
1855
- copyWithin ( target : number , start : number , end ?: number ) : this;
1855
+ copyWithin ( target : number , start ? : number , end ?: number ) : this;
1856
1856
1857
1857
/**
1858
1858
* Determines whether all the members of an array satisfy the specified test.
@@ -2131,10 +2131,10 @@ interface Uint8Array {
2131
2131
* @param target If target is negative, it is treated as length+target where length is the
2132
2132
* length of the array.
2133
2133
* @param start If start is negative, it is treated as length+start. If end is negative, it
2134
- * is treated as length+end.
2134
+ * is treated as length+end. If start is omitted, `0` is used.
2135
2135
* @param end If not specified, length of the this object is used as its default value.
2136
2136
*/
2137
- copyWithin ( target : number , start : number , end ?: number ) : this;
2137
+ copyWithin ( target : number , start ? : number , end ?: number ) : this;
2138
2138
2139
2139
/**
2140
2140
* Determines whether all the members of an array satisfy the specified test.
@@ -2413,10 +2413,10 @@ interface Uint8ClampedArray {
2413
2413
* @param target If target is negative, it is treated as length+target where length is the
2414
2414
* length of the array.
2415
2415
* @param start If start is negative, it is treated as length+start. If end is negative, it
2416
- * is treated as length+end.
2416
+ * is treated as length+end. If start is omitted, `0` is used.
2417
2417
* @param end If not specified, length of the this object is used as its default value.
2418
2418
*/
2419
- copyWithin ( target : number , start : number , end ?: number ) : this;
2419
+ copyWithin ( target : number , start ? : number , end ?: number ) : this;
2420
2420
2421
2421
/**
2422
2422
* Determines whether all the members of an array satisfy the specified test.
@@ -2694,10 +2694,10 @@ interface Int16Array {
2694
2694
* @param target If target is negative, it is treated as length+target where length is the
2695
2695
* length of the array.
2696
2696
* @param start If start is negative, it is treated as length+start. If end is negative, it
2697
- * is treated as length+end.
2697
+ * is treated as length+end. If start is omitted, `0` is used.
2698
2698
* @param end If not specified, length of the this object is used as its default value.
2699
2699
*/
2700
- copyWithin ( target : number , start : number , end ?: number ) : this;
2700
+ copyWithin ( target : number , start ? : number , end ?: number ) : this;
2701
2701
2702
2702
/**
2703
2703
* Determines whether all the members of an array satisfy the specified test.
@@ -2976,10 +2976,10 @@ interface Uint16Array {
2976
2976
* @param target If target is negative, it is treated as length+target where length is the
2977
2977
* length of the array.
2978
2978
* @param start If start is negative, it is treated as length+start. If end is negative, it
2979
- * is treated as length+end.
2979
+ * is treated as length+end. If start is omitted, `0` is used.
2980
2980
* @param end If not specified, length of the this object is used as its default value.
2981
2981
*/
2982
- copyWithin ( target : number , start : number , end ?: number ) : this;
2982
+ copyWithin ( target : number , start ? : number , end ?: number ) : this;
2983
2983
2984
2984
/**
2985
2985
* Determines whether all the members of an array satisfy the specified test.
@@ -3258,10 +3258,10 @@ interface Int32Array {
3258
3258
* @param target If target is negative, it is treated as length+target where length is the
3259
3259
* length of the array.
3260
3260
* @param start If start is negative, it is treated as length+start. If end is negative, it
3261
- * is treated as length+end.
3261
+ * is treated as length+end. If start is omitted, `0` is used.
3262
3262
* @param end If not specified, length of the this object is used as its default value.
3263
3263
*/
3264
- copyWithin ( target : number , start : number , end ?: number ) : this;
3264
+ copyWithin ( target : number , start ? : number , end ?: number ) : this;
3265
3265
3266
3266
/**
3267
3267
* Determines whether all the members of an array satisfy the specified test.
@@ -3540,10 +3540,10 @@ interface Uint32Array {
3540
3540
* @param target If target is negative, it is treated as length+target where length is the
3541
3541
* length of the array.
3542
3542
* @param start If start is negative, it is treated as length+start. If end is negative, it
3543
- * is treated as length+end.
3543
+ * is treated as length+end. If start is omitted, `0` is used.
3544
3544
* @param end If not specified, length of the this object is used as its default value.
3545
3545
*/
3546
- copyWithin ( target : number , start : number , end ?: number ) : this;
3546
+ copyWithin ( target : number , start ? : number , end ?: number ) : this;
3547
3547
3548
3548
/**
3549
3549
* Determines whether all the members of an array satisfy the specified test.
@@ -3821,10 +3821,10 @@ interface Float32Array {
3821
3821
* @param target If target is negative, it is treated as length+target where length is the
3822
3822
* length of the array.
3823
3823
* @param start If start is negative, it is treated as length+start. If end is negative, it
3824
- * is treated as length+end.
3824
+ * is treated as length+end. If start is omitted, `0` is used.
3825
3825
* @param end If not specified, length of the this object is used as its default value.
3826
3826
*/
3827
- copyWithin ( target : number , start : number , end ?: number ) : this;
3827
+ copyWithin ( target : number , start ? : number , end ?: number ) : this;
3828
3828
3829
3829
/**
3830
3830
* Determines whether all the members of an array satisfy the specified test.
@@ -4104,10 +4104,10 @@ interface Float64Array {
4104
4104
* @param target If target is negative, it is treated as length+target where length is the
4105
4105
* length of the array.
4106
4106
* @param start If start is negative, it is treated as length+start. If end is negative, it
4107
- * is treated as length+end.
4107
+ * is treated as length+end. If start is omitted, `0` is used.
4108
4108
* @param end If not specified, length of the this object is used as its default value.
4109
4109
*/
4110
- copyWithin ( target : number , start : number , end ?: number ) : this;
4110
+ copyWithin ( target : number , start ? : number , end ?: number ) : this;
4111
4111
4112
4112
/**
4113
4113
* Determines whether all the members of an array satisfy the specified test.
0 commit comments