ng2-alert-center
Version:
Alert center provides an alert service and an alert component, you can include in your Angular 2 project.
13 lines (12 loc) • 493 B
TypeScript
import { AlertType } from './alert-type';
export declare class Alert {
alertType: AlertType;
text: string;
textStrong: string;
autoDismissTime: number;
dismissable: boolean;
static create(alertType: AlertType, text: string, autoDismissTime?: number, dismissable?: boolean): Alert;
constructor(alertType: AlertType, text: string, textStrong?: string, autoDismissTime?: number, dismissable?: boolean);
isDismissable(): boolean;
isAutoDismissing(): boolean;
}