ng2-bootstrap_runwzj_test
Version:
Native Angular Bootstrap Components
36 lines (35 loc) • 1.19 kB
JavaScript
import { NgModule } from '@angular/core';
import { AlertModule } from './alert/alert.module';
export { AccordionComponent, AccordionConfig, AccordionModule, AccordionPanelComponent } from './accordion';
export { AlertComponent, AlertConfig, AlertModule } from './alert';
var MODULES = [
AlertModule
];
export var BsRootModule = (function () {
function BsRootModule() {
}
BsRootModule.decorators = [
{ type: NgModule, args: [{
imports: [
AlertModule.forRoot()
],
exports: MODULES
},] },
];
/** @nocollapse */
BsRootModule.ctorParameters = function () { return []; };
return BsRootModule;
}());
export var Ng2BootstrapModule = (function () {
function Ng2BootstrapModule() {
}
Ng2BootstrapModule.forRoot = function () {
return { ngModule: BsRootModule };
};
Ng2BootstrapModule.decorators = [
{ type: NgModule, args: [{ exports: MODULES },] },
];
/** @nocollapse */
Ng2BootstrapModule.ctorParameters = function () { return []; };
return Ng2BootstrapModule;
}());