frontend/.pnpm-store/v3/files/9d/fdcce72079c226559723c2926ee6656a4bb137487b924dc87de9a338767c02e49e36b387f301d7b6d0ccc20a534e039cdb0aa58a0e810ed26efe062240ffc5

16 lines
363 B
Plaintext

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