UNPKG

380 BTypeScriptView Raw
1/**
2Matches any [typed array](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray), like `Uint8Array` or `Float64Array`.
3
4@category Array
5*/
6export type TypedArray =
7 | Int8Array
8 | Uint8Array
9 | Uint8ClampedArray
10 | Int16Array
11 | Uint16Array
12 | Int32Array
13 | Uint32Array
14 | Float32Array
15 | Float64Array
16 | BigInt64Array
17 | BigUint64Array;