frontend/.pnpm-store/v3/files/1f/9761e9ca26e50d3947233587bd4801222088f5a93a1cae6b09536647734e6cd9a5e586b57c46a22585fc6b6ecad261b8944f2baa3e115a3f58b60884229eea

20 lines
418 B
Plaintext

/// <reference lib="es2020.bigint"/>
/**
Matches any [typed array](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray), like `Uint8Array` or `Float64Array`.
@category Basic
*/
export type TypedArray =
| Int8Array
| Uint8Array
| Uint8ClampedArray
| Int16Array
| Uint16Array
| Int32Array
| Uint32Array
| Float32Array
| Float64Array
| BigInt64Array
| BigUint64Array;