astro-ghostcms/.pnpm-store/v3/files/61/8f6395ff41331ef09842d77cad2...

18 lines
380 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
/**
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;