Sha256: abf86bf93468ee47bb82ef281ede349a9a5cdaa79f7623cb0c38b3b8f4d6d16d
Contents?: true
Size: 418 Bytes
Versions: 33
Compression:
Stored size: 418 Bytes
Contents
/// <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`. @category Basic */ export type TypedArray = | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array | BigInt64Array | BigUint64Array;
Version data entries
33 entries across 33 versions & 1 rubygems