⚙ Compilation target
ES2023
⚙ Library
es2023.array.d.ts
Missing / Incorrect Definition
interface Int8Array {
...
toReversed(): Uint8Array;
...
}
Sample Code
The correct definition should be:
interface Int8Array {
...
toReversed(): Int8Array;
...
}
Documentation Link
No response