import { TemplateRef } from '@angular/core'; import { MessageType } from './message.enum'; export interface Message { title?: string; text?: string; html?: string | TemplateRef; icon?: string; type?: MessageType; options?: any; format?: 'text' | 'html'; } export interface MessageOptions { timeOut?: number; template?: string; }