Interface ArrayBufferView

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

Properties

buffer: ArrayBuffer

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.