@laserware/arcade
    Preparing search index...

    Type Alias TypedArray

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

    Type which encompasses possible instances of TypedArray classes.

    NOTE: This does not include BigInt64Array and BitUint64Array because those are part of ES2020 and not supported by certain TS configurations. If using either in areTypedArraysEqual, you can cast the instance as TypedArray and it will work as expected, because runtime checks will still work for those classes.