UNPKG

381 BTypeScriptView Raw
1import { InjectionToken, ModuleWithProviders } from '@angular/core';
2import { Options } from './interfaces/options.type';
3export declare const OPTIONS: InjectionToken<Options>;
4export declare function optionsFactory(options: any): any;
5export declare class SimpleNotificationsModule {
6 static forRoot(options?: Options): ModuleWithProviders<SimpleNotificationsModule>;
7}