ng2-alert-center
Version:
Alert center provides an alert service and an alert component, you can include in your Angular 2 project.
22 lines • 864 B
JavaScript
import { NgModule } from '@angular/core';
import { AlertCenterService } from './service/alert-center.service';
import { AlertCenterComponent } from './alert-center/alert-center.component';
import { AlertComponent } from './alert/alert.component';
import { CommonModule } from '@angular/common';
var AlertCenterModule = (function () {
function AlertCenterModule() {
}
return AlertCenterModule;
}());
export { AlertCenterModule };
AlertCenterModule.decorators = [
{ type: NgModule, args: [{
declarations: [AlertCenterComponent, AlertComponent],
providers: [AlertCenterService],
imports: [CommonModule],
exports: [AlertCenterComponent]
},] },
];
/** @nocollapse */
AlertCenterModule.ctorParameters = function () { return []; };
//# sourceMappingURL=alert-center.module.js.map