Type Alias AsyncValue<Value>

AsyncValue: Error | Promise<ExcludeNoUpdate<Value>> | ExcludeNoUpdate<Value>

The possible types for an async observable's value, each representing a different potential phase in the promise lifecycle.

Type Parameters

  • Value