This site uses cookies from Google to deliver its services and to analyze traffic.
Type used to represent a value which may be synchronous or async.
type MaybeAsync<T> = T | Observable<T> | Promise<T>