Interface AsyncSearchResult

Represents a search request promise result.


Data Retrievers

interface AsyncSearchResult {
    reason: AsyncResultReason;
    value?: AsyncSearchResultContent;
}

Properties

Properties

The reason for the end of the promise.

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