UNPKG

ng-alert

Version:

Simple Alert module for Angular version 2 and above.

14 lines (13 loc) 254 B
export interface Alert { title: string; message: string; type: AlertType; hasCloseButton: boolean, duration: number } export enum AlertType { SUCCESS = 'success', ERROR = 'error', INFO = 'info', WARNING ='warning' }