Sha256: 234ada61fbdcac5d8303c5aef3c937251a7a860a72e2fbfd376af71b1f28485d
Contents?: true
Size: 363 Bytes
Versions: 31
Compression:
Stored size: 363 Bytes
Contents
/** 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;
Version data entries
31 entries across 31 versions & 3 rubygems