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