Skip to content

PromiseProxy

Defined in: aberdeen.ts:1651

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

T

busy: boolean

Defined in: aberdeen.ts:1655

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


optional value?: T

Defined in: aberdeen.ts:1659

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


optional error?: any

Defined in: aberdeen.ts:1663

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