UNPKG

@addapptables/notifier

Version:
10 lines (9 loc) 333 B
import { NotifierType } from './notifier-type.model'; import { TemplateRef } from '@angular/core'; import { ComponentType } from '@angular/cdk/portal'; export declare class Notifier<D = any, T = any> { message: string; type: NotifierType; data?: D; templateOrComponent?: ComponentType<T> | TemplateRef<T>; }