UNPKG

@rx-angular/cdk

Version:

@rx-angular/cdk is a Component Development Kit for ergonomic and highly performant angular applications. It helps to to build Large scale applications, UI libs, state management, rendering systems and much more. Furthermore the unique way of mixing reacti

8 lines (7 loc) 251 B
import { Observable } from 'rxjs'; /** * This Observable factory creates an Observable out of a static value or an Observable. * * @param o - the value to coerce */ export declare function coerceObservable<T>(o: Observable<T> | T): Observable<T>;