ng2-bootstrap
Version:
Native Angular Bootstrap Components
29 lines • 1.16 kB
JavaScript
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { ComponentLoaderFactory } from '../component-loader';
import { PositioningService } from '../positioning';
import { PopoverConfig } from './popover.config';
import { PopoverDirective } from './popover.directive';
import { PopoverContainerComponent } from './popover-container.component';
export var PopoverModule = (function () {
function PopoverModule() {
}
PopoverModule.forRoot = function () {
return {
ngModule: PopoverModule,
providers: [PopoverConfig, ComponentLoaderFactory, PositioningService]
};
};
PopoverModule.decorators = [
{ type: NgModule, args: [{
imports: [CommonModule],
declarations: [PopoverDirective, PopoverContainerComponent],
exports: [PopoverDirective],
entryComponents: [PopoverContainerComponent]
},] },
];
/** @nocollapse */
PopoverModule.ctorParameters = function () { return []; };
return PopoverModule;
}());
//# sourceMappingURL=popover.module.js.map