Optionalinit: Readonly<Partial<{}>>Checks if the current .value is a rejection error. This type guards the current instance's
.value property.
Checks if the current .value is resolved (and not an error) or still waiting. This type
guards the current instance's .value property.
Checks if the current .value has resolved (meaning the Promise has settled and it was not
rejected). This type guards the current instance's .value property.
Checks if the current .value has settled (meaning it is either a rejection error or a
resolved value). This type guards the current instance's .value property.
Checks if the current .value has not settled yet settled (meaning it is still an unsettled
Promise). This type guards the current instance's .value property.
Class for constructing async props. Do not use this directly as its internal types won't be inferred correctly. Instead use asyncProp an async prop or AsyncProp for types.