UNPKG

biplab-notifier

Version:

This is a notification npm package, it can be use as simple notification or modal dialog, a lot of customization option are available as well, checkout the github repo and examples

17 lines (16 loc) 611 B
import { OnInit, EventEmitter, ElementRef } from '@angular/core'; import { NotificationHint } from '../layout/notifier'; import { NotificationButton } from '../layout/notifier'; export declare class NotificationsComponent implements OnInit { myDiv: ElementRef; layoutHint: NotificationHint; close: EventEmitter<any>; constructor(); ngOnInit(): void; closeDailog(event: any): void; click(button: NotificationButton): void; notificationClose(status: any): void; readonly shadow: string; buttonStatus(button: NotificationButton): boolean; readonly messages: string[]; }