angular9-notifications-gpu
Version:
> A light and easy to use notifications library for Angular 2. ~~It features both regular page notifications (toasts) and push notifications.~~
8 lines (7 loc) • 381 B
TypeScript
import { InjectionToken, ModuleWithProviders } from '@angular/core';
import { Options } 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<SimpleNotificationsModule>;
}