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

14 lines (13 loc) 505 B
import { Observable } from 'rxjs'; import { RxNotification } from './model'; /** * @internal * * A factory function returning an object to handle the process of switching templates by Notification channel. * You can next a Observable of `RxNotification` multiple times and merge them into the Observable exposed under `trigger$` * */ export declare function templateTriggerHandling<T>(): { trigger$: Observable<RxNotification<T>>; next(templateName: Observable<RxNotification<T>>): void; };