ngx-notification
Version:
Angular Library to display all types of notifications in a Toast Notification format. Tested on Angular 6
14 lines (13 loc) • 478 B
TypeScript
import { OnInit, OnDestroy } from '@angular/core';
import { Subscription } from 'rxjs';
import { NgxNotificationService } from './ngx-notification.service';
export declare class NgxNotificationComponent implements OnInit, OnDestroy {
private ngxNotificationService;
show: any;
message: any;
subscription: Subscription;
constructor(ngxNotificationService: NgxNotificationService);
ngOnInit(): void;
ngOnDestroy(): void;
autoHideMessage(): void;
}