UNPKG

ngx-bootstrap

Version:
27 lines 1.11 kB
import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { TypeaheadContainerComponent } from './typeahead-container.component'; import { TypeaheadDirective } from './typeahead.directive'; import { ComponentLoaderFactory } from '../component-loader/index'; import { PositioningService } from '../positioning/index'; var TypeaheadModule = /** @class */ (function () { function TypeaheadModule() { } TypeaheadModule.forRoot = function () { return { ngModule: TypeaheadModule, providers: [ComponentLoaderFactory, PositioningService] }; }; TypeaheadModule.decorators = [ { type: NgModule, args: [{ imports: [CommonModule], declarations: [TypeaheadContainerComponent, TypeaheadDirective], exports: [TypeaheadContainerComponent, TypeaheadDirective], entryComponents: [TypeaheadContainerComponent] },] }, ]; return TypeaheadModule; }()); export { TypeaheadModule }; //# sourceMappingURL=typeahead.module.js.map