UNPKG

ng-alertbar

Version:

A configurable alertbar for Angular

16 lines (15 loc) 353 B
export interface AlertOptions { lifeTime?: number; showDelay?: number; backgroundColor?: string; borderColor?: string; textColor?: string; widthMode?: 'full' | 'partial'; closeButton?: boolean; bypassQueue?: boolean; html?: boolean; } export interface AlertTrigger { message: string; options: AlertOptions; }