Interface StructInstance<TArrayBuffer>

interface StructInstance<TArrayBuffer extends ArrayBufferLike = ArrayBuffer> {
    buffer: TArrayBuffer;
    byteLength: number;
    byteOffset: number;
    constructor: StructConstructor<object>;
}

Type Parameters

  • TArrayBuffer extends ArrayBufferLike = ArrayBuffer

Hierarchy

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.

constructor: StructConstructor<object>

The initial value of Object.prototype.constructor is the standard built-in Object constructor.