Interface ArrayBufferView

    interface ArrayBufferView {
        buffer: ArrayBufferLike;
        byteLength: number;
        byteOffset: number;
    }

    Properties

    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.