frontend/.pnpm-store/v3/files/61/8f6395ff41331ef09842d77cad261254a5a0248d03491db9cb0d1d3d96f47e51890831af7f5632ef1a4d1563c426bab632f442b311a81d8a98eb4c7ac6ad92

18 lines
380 B
Plaintext

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