Interface AsyncDocumentContentGetterResult

Represents an document content request promise result.


Data Retrievers

interface AsyncDocumentContentGetterResult {
    reason: AsyncResultReason;
    value?: string | Uint8Array;
}

Properties

Properties

The reason for the end of the promise.

value?: string | Uint8Array

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