Type Alias TypedArray

TypedArray:
    | Int8Array
    | Uint8Array
    | Uint8ClampedArray
    | Int16Array
    | Uint16Array
    | Int32Array
    | Uint32Array
    | Float32Array
    | Float64Array

Represents a union type for various typed arrays. This type includes all standard typed arrays such as:

  • Int8Array: An array of 8-bit signed integers.
  • Uint8Array: An array of 8-bit unsigned integers.
  • Uint8ClampedArray: An array of 8-bit unsigned integers clamped to 0-255.
  • Int16Array: An array of 16-bit signed integers.
  • Uint16Array: An array of 16-bit unsigned integers.
  • Int32Array: An array of 32-bit signed integers.
  • Uint32Array: An array of 32-bit unsigned integers.
  • Float32Array: An array of 32-bit floating point numbers.
  • Float64Array: An array of 64-bit floating point numbers.
MMNEPVFCICPMFPCPTTAAATR