fdcce72079c226559723c2926ee6656a4bb137487b924dc87de9a338767c02e49e36b387f301d7b6d0ccc20a534e039cdb0aa58a0e810ed26efe062240ffc5 363 B

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