Interface AsyncAttributeEnumerationResult

Represents a promise result, for AttributeValuesEnumeratorInterface.asyncNextValues.


Metadata

interface AsyncAttributeEnumerationResult {
    error?: InfiniteError;
    reason: AsyncResultReason;
    value?: string[];
}

Properties

Properties

The error in case of error.

The reason for the end of the promise.

value?: string[]

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