PromiseProxy
Defined in: aberdeen.ts:1651
When proxy is called with a Promise, the returned object has this shape.
Type Parameters
Section titled “Type Parameters”T
Properties
Section titled “Properties”busy:
boolean
Defined in: aberdeen.ts:1655
True if the promise is still pending, false if it has resolved or rejected.
value?
Section titled “value?”
optionalvalue?:T
Defined in: aberdeen.ts:1659
If the promise has resolved, this contains the resolved value.
error?
Section titled “error?”
optionalerror?:any
Defined in: aberdeen.ts:1663
If the promise has rejected, this contains the rejection error.