@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
13 lines (12 loc) • 652 B
TypeScript
import { Notification, OperatorFunction } from 'rxjs';
import { RxNotification, RxNotificationKind } from './model';
export declare function rxMaterialize<T>(): OperatorFunction<T, RxNotification<T>>;
/**
* @internal
*
* @description
* This function is here to turn RxJS notification kind values into RxNotification kind names.
* The main reason for the naming is the RxNotification kind values map directly to the default
* template names (`suspense`, `next`, `error` `complete`) in the directives of the template package
*/
export declare function notificationKindToRxNotificationKind(kind: Notification<unknown>['kind']): RxNotificationKind;