Interface AsyncAnnotationViewParsingResult

Represents an AnnotationRendererInterface annotation parsing promise result.


3D Rendering

interface AsyncAnnotationViewParsingResult {
    error: InfiniteError;
    reason: AsyncResultReason;
    value?: AnnotationViewParsingResultInterface;
}

Properties

Properties

The error in case of bad input.

The reason for the end of the promise.

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