MaybeAsync
Type Alias
Type used to represent a value which may be synchronous or async.
API
type MaybeAsync<T> = T | Observable<T> | Promise<T>
Jump to details
Type used to represent a value which may be synchronous or async.
type MaybeAsync<T> = T | Observable<T> | Promise<T>