aboutsummaryrefslogtreecommitdiff
path: root/node_modules/type-fest/source/typed-array.d.ts
blob: 15e22a3e505bffe08e53eea1e572727a093cc034 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**
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;