@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
7 lines (6 loc) • 300 B
TypeScript
import { Observable, OperatorFunction } from 'rxjs';
/**
* This operator maps an Observable out of a static value or an Observable.
*
*/
export declare function coerceObservableWith<T>(): OperatorFunction<Observable<T | null | undefined> | T | null | undefined, Observable<T | null | undefined>>;