UNPKG

ngx-rx-if

Version:

An implementation of conditional reactive directive based on @ngrx/store (Redux)

13 lines (12 loc) 335 B
import { Type } from '@angular/core'; export interface IElseMessageComponent { ctx: any; } export interface IElseMessageComponentCtor extends Type<any>, IElseMessageComponent { } export interface RxIfConfig { bindTo: string; elseMsg: string; elseMsgCmp: IElseMessageComponentCtor; elseMsgCmpCtx: any; }