angular2-notifications-zth
Version:
> A light and easy to use notifications library for Angular 2. ~~It features both regular page notifications (toasts) and push notifications.~~
16 lines (15 loc) • 773 B
TypeScript
import { ModuleWithProviders } from '@angular/core';
import { InjectionToken } from '@angular/core';
import { Options } from './interfaces/options.type';
export * from './components/notification/notification.component';
export * from './components/simple-notifications/simple-notifications.component';
export * from './services/notifications.service';
export * from './interfaces/icons';
export * from './interfaces/notification-event.type';
export * from './interfaces/notification.type';
export * from './interfaces/options.type';
export declare const OPTIONS: InjectionToken<Options>;
export declare function optionsFactory(options: any): any;
export declare class SimpleNotificationsModule {
static forRoot(options?: Options): ModuleWithProviders;
}