Fix `TypedArray` typedef

This commit is contained in:
Joshua Lochner 2023-05-08 05:40:32 +02:00
parent 2b5073f73c
commit 4422adb928
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@
*/
/**
* @typedef {Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float32Array} TypedArray
* @typedef {Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array} TypedArray
* @typedef {BigInt64Array | BigUint64Array} BigTypedArray
* @typedef {TypedArray | BigTypedArray} AnyTypedArray
*/