Interface ArrayBufferView<TArrayBuffer>

    interface ArrayBufferView<
        TArrayBuffer extends ArrayBufferLike = ArrayBufferLike,
    > {
        buffer: TArrayBuffer;
        byteLength: number;
        byteOffset: number;
    }

    Type Parameters

    Properties

    buffer: TArrayBuffer

    The ArrayBuffer instance referenced by the array.

    byteLength: number

    The length in bytes of the array.

    byteOffset: number

    The offset in bytes of the array.