Interface AsyncUInt32ArrayResult

Represents a promise result, for functions expecting to return a UInt32Array.


Metadata

interface AsyncUInt32ArrayResult {
    reason: AsyncResultReason;
    value?: Uint32Array;
}

Properties

Properties

The reason for the end of the promise.

value?: Uint32Array

The returned value of the promise. Undefined if the call failed.