@@ -1094,7 +1094,7 @@ interface ReadonlyArray<T> {
1094
1094
/**
1095
1095
* Returns a section of an array.
1096
1096
* @param start The beginning of the specified portion of the array.
1097
- * @param end The end of the specified portion of the array.
1097
+ * @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.
1098
1098
*/
1099
1099
slice ( start ?: number , end ?: number ) : T [ ] ;
1100
1100
/**
@@ -1230,7 +1230,7 @@ interface Array<T> {
1230
1230
/**
1231
1231
* Returns a section of an array.
1232
1232
* @param start The beginning of the specified portion of the array.
1233
- * @param end The end of the specified portion of the array.
1233
+ * @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.
1234
1234
*/
1235
1235
slice ( start ?: number , end ?: number ) : T [ ] ;
1236
1236
/**
@@ -1860,7 +1860,7 @@ interface Int8Array {
1860
1860
/**
1861
1861
* Returns a section of an array.
1862
1862
* @param start The beginning of the specified portion of the array.
1863
- * @param end The end of the specified portion of the array.
1863
+ * @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.
1864
1864
*/
1865
1865
slice ( start ?: number , end ?: number ) : Int8Array ;
1866
1866
@@ -2135,7 +2135,7 @@ interface Uint8Array {
2135
2135
/**
2136
2136
* Returns a section of an array.
2137
2137
* @param start The beginning of the specified portion of the array.
2138
- * @param end The end of the specified portion of the array.
2138
+ * @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.
2139
2139
*/
2140
2140
slice ( start ?: number , end ?: number ) : Uint8Array ;
2141
2141
@@ -2410,7 +2410,7 @@ interface Uint8ClampedArray {
2410
2410
/**
2411
2411
* Returns a section of an array.
2412
2412
* @param start The beginning of the specified portion of the array.
2413
- * @param end The end of the specified portion of the array.
2413
+ * @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.
2414
2414
*/
2415
2415
slice ( start ?: number , end ?: number ) : Uint8ClampedArray ;
2416
2416
@@ -2683,7 +2683,7 @@ interface Int16Array {
2683
2683
/**
2684
2684
* Returns a section of an array.
2685
2685
* @param start The beginning of the specified portion of the array.
2686
- * @param end The end of the specified portion of the array.
2686
+ * @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.
2687
2687
*/
2688
2688
slice ( start ?: number , end ?: number ) : Int16Array ;
2689
2689
@@ -2959,7 +2959,7 @@ interface Uint16Array {
2959
2959
/**
2960
2960
* Returns a section of an array.
2961
2961
* @param start The beginning of the specified portion of the array.
2962
- * @param end The end of the specified portion of the array.
2962
+ * @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.
2963
2963
*/
2964
2964
slice ( start ?: number , end ?: number ) : Uint16Array ;
2965
2965
@@ -3234,7 +3234,7 @@ interface Int32Array {
3234
3234
/**
3235
3235
* Returns a section of an array.
3236
3236
* @param start The beginning of the specified portion of the array.
3237
- * @param end The end of the specified portion of the array.
3237
+ * @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.
3238
3238
*/
3239
3239
slice ( start ?: number , end ?: number ) : Int32Array ;
3240
3240
@@ -3508,7 +3508,7 @@ interface Uint32Array {
3508
3508
/**
3509
3509
* Returns a section of an array.
3510
3510
* @param start The beginning of the specified portion of the array.
3511
- * @param end The end of the specified portion of the array.
3511
+ * @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.
3512
3512
*/
3513
3513
slice ( start ?: number , end ?: number ) : Uint32Array ;
3514
3514
@@ -3783,7 +3783,7 @@ interface Float32Array {
3783
3783
/**
3784
3784
* Returns a section of an array.
3785
3785
* @param start The beginning of the specified portion of the array.
3786
- * @param end The end of the specified portion of the array.
3786
+ * @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.
3787
3787
*/
3788
3788
slice ( start ?: number , end ?: number ) : Float32Array ;
3789
3789
@@ -4059,7 +4059,7 @@ interface Float64Array {
4059
4059
/**
4060
4060
* Returns a section of an array.
4061
4061
* @param start The beginning of the specified portion of the array.
4062
- * @param end The end of the specified portion of the array.
4062
+ * @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.
4063
4063
*/
4064
4064
slice ( start ?: number , end ?: number ) : Float64Array ;
4065
4065
0 commit comments