UNPKG

826 BJavaScriptView Raw
1import { CommonModule } from '@angular/common';
2import { NgModule } from '@angular/core';
3import { AlertComponent } from './alert.component';
4import { AlertConfig } from './alert.config';
5export var AlertModule = (function () {
6 function AlertModule() {
7 }
8 AlertModule.forRoot = function () {
9 return { ngModule: AlertModule, providers: [AlertConfig] };
10 };
11 AlertModule.decorators = [
12 { type: NgModule, args: [{
13 imports: [CommonModule],
14 declarations: [AlertComponent],
15 exports: [AlertComponent],
16 entryComponents: [AlertComponent]
17 },] },
18 ];
19 /** @nocollapse */
20 AlertModule.ctorParameters = function () { return []; };
21 return AlertModule;
22}());
23//# sourceMappingURL=alert.module.js.map
\No newline at end of file