UNPKG

1.16 kBJavaScriptView Raw
1import { CommonModule } from '@angular/common';
2import { NgModule } from '@angular/core';
3import { TypeaheadContainerComponent } from './typeahead-container.component';
4import { TypeaheadDirective } from './typeahead.directive';
5import { ComponentLoaderFactory } from '../component-loader';
6import { PositioningService } from '../positioning';
7export var TypeaheadModule = (function () {
8 function TypeaheadModule() {
9 }
10 TypeaheadModule.forRoot = function () {
11 return {
12 ngModule: TypeaheadModule,
13 providers: [ComponentLoaderFactory, PositioningService]
14 };
15 };
16 ;
17 TypeaheadModule.decorators = [
18 { type: NgModule, args: [{
19 imports: [CommonModule],
20 declarations: [TypeaheadContainerComponent, TypeaheadDirective],
21 exports: [TypeaheadContainerComponent, TypeaheadDirective],
22 entryComponents: [TypeaheadContainerComponent]
23 },] },
24 ];
25 /** @nocollapse */
26 TypeaheadModule.ctorParameters = function () { return []; };
27 return TypeaheadModule;
28}());
29//# sourceMappingURL=typeahead.module.js.map
\No newline at end of file