@@ -203,19 +203,19 @@ interface Int8Array {
203
203
/**
204
204
* Copies the array and returns the copy with the elements in reverse order.
205
205
*/
206
- toReversed ( ) : Uint8Array ;
206
+ toReversed ( ) : Int8Array ;
207
207
208
208
/**
209
209
* Copies and sorts the array.
210
210
* @param compareFn Function used to determine the order of the elements. It is expected to return
211
211
* a negative value if the first argument is less than the second argument, zero if they're equal, and a positive
212
212
* value otherwise. If omitted, the elements are sorted in ascending order.
213
213
* ```ts
214
- * const myNums = Uint8Array .from([11, 2, 22, 1]);
215
- * myNums.toSorted((a, b) => a - b) // Uint8Array (4) [1, 2, 11, 22]
214
+ * const myNums = Int8Array .from([11, 2, 22, 1]);
215
+ * myNums.toSorted((a, b) => a - b) // Int8Array (4) [1, 2, 11, 22]
216
216
* ```
217
217
*/
218
- toSorted ( compareFn ?: ( a : number , b : number ) => number ) : Uint8Array ;
218
+ toSorted ( compareFn ?: ( a : number , b : number ) => number ) : Int8Array ;
219
219
220
220
/**
221
221
* Copies the array and inserts the given number at the provided index.
@@ -224,7 +224,7 @@ interface Int8Array {
224
224
* @param value The value to insert into the copied array.
225
225
* @returns A copy of the original array with the inserted value.
226
226
*/
227
- with ( index : number , value : number ) : Uint8Array ;
227
+ with ( index : number , value : number ) : Int8Array ;
228
228
}
229
229
230
230
interface Uint8Array {
0 commit comments