Type Alias TypedArrayConstructor

TypedArrayConstructor:
    | TypedArrayConstructorBase<Int8Array>
    | TypedArrayConstructorBase<Uint8Array>
    | TypedArrayConstructorBase<Uint8ClampedArray>
    | TypedArrayConstructorBase<Int16Array>
    | TypedArrayConstructorBase<Uint16Array>
    | TypedArrayConstructorBase<Int32Array>
    | TypedArrayConstructorBase<Uint32Array>
    | TypedArrayConstructorBase<Float32Array>
    | TypedArrayConstructorBase<Float64Array>

Represents a constructor type for various typed arrays. This type is a union of constructors for different typed arrays such as Int8Array, Uint8Array, Uint8ClampedArray, Int16Array, Uint16Array, Int32Array, Uint32Array, Float32Array, and Float64Array.

MMNEPVFCICPMFPCPTTAAATR