Aberdeen - v1.3.0
    Preparing search index...

    Interface PromiseProxy<T>

    When proxy is called with a Promise, the returned object has this shape.

    interface PromiseProxy<T> {
        busy: boolean;
        error?: any;
        value?: T;
    }

    Type Parameters

    • T
    Index

    Properties

    Properties

    busy: boolean

    True if the promise is still pending, false if it has resolved or rejected.

    error?: any

    If the promise has rejected, this contains the rejection error.

    value?: T

    If the promise has resolved, this contains the resolved value.