Skip to content

Type Alias: TypedArray

ts
type TypedArray = 
  | Float32Array
  | Float64Array
  | Int8Array
  | Uint8Array
  | Int16Array
  | Uint16Array
  | Int32Array
  | Uint32Array
  | Uint8ClampedArray;

Defined in: src/types.ts:2

Released under the MIT License.