UNPKG

@technobuddha/library

Version:
7 lines (6 loc) 241 B
/** * Any of the built-in typed array types in JavaScript. * @group Utility * @category Global Types */ export type TypedArray = Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array;