UNPKG

ng2-alert-center

Version:

Alert center provides an alert service and an alert component, you can include in your Angular 2 project.

18 lines (17 loc) 502 B
import { OnInit, EventEmitter } from '@angular/core'; import { Alert } from '../model/alert'; export declare class AlertComponent implements OnInit { alert: Alert; htmlTextEnabled: boolean; dismissed: EventEmitter<{}>; constructor(); ngOnInit(): void; isSuccess(): boolean; isInfo(): boolean; isWarning(): boolean; isDanger(): boolean; dismiss(): void; isDismissEnabled(): boolean; isTextStrongDefined(): boolean | ""; private initTimerIfNeeded(); }