ngx-notification-bar
Version:
Angular notification bar component for Angular 2+ projects.
17 lines (16 loc) • 350 B
TypeScript
export declare enum NotificationType {
Info = 0,
Success = 1,
Error = 2,
Warning = 3
}
export interface Notification {
message: string;
type?: NotificationType;
typeValue?: string;
autoHide?: boolean;
hideDelay?: number;
isHtml?: boolean;
allowClose?: boolean;
hideOnHover?: boolean;
}