type-fest/source/typed-array.d.ts
Sindre Sorhus 2ac33c7c1d Fix missing type
Fixes #206
2021-05-08 16:18:08 +07:00

18 lines
401 B
TypeScript

/// <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`.
*/
export type TypedArray =
| Int8Array
| Uint8Array
| Uint8ClampedArray
| Int16Array
| Uint16Array
| Int32Array
| Uint32Array
| Float32Array
| Float64Array
| BigInt64Array
| BigUint64Array;