gamebench-ng-toasty
Version:
Angular2 Toasty component shows growl-style alerts and messages for your web app - now with more clicking!
15 lines (14 loc) • 547 B
TypeScript
import { ModuleWithProviders } from "@angular/core";
export * from './src/toasty.service';
export * from './src/toasty.component';
export * from './src/toast.component';
export * from './src/shared';
import { ToastyService, ToastyConfig, toastyServiceFactory } from './src/toasty.service';
export declare let providers: (typeof ToastyConfig | {
provide: typeof ToastyService;
useFactory: typeof toastyServiceFactory;
deps: (typeof ToastyConfig)[];
})[];
export declare class ToastyModule {
static forRoot(): ModuleWithProviders;
}