@nebular/theme
Version:
@nebular/theme
36 lines • 1.3 kB
JavaScript
/**
* @license
* Copyright Akveo. All Rights Reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*/
import { NgModule } from '@angular/core';
import { NbOverlayModule } from '../cdk/overlay/overlay.module';
import { NbCardModule } from '../card/card.module';
import { NbAutocompleteComponent } from './autocomplete.component';
import { NbAutocompleteDirective } from './autocomplete.directive';
import { FormsModule } from '@angular/forms';
import { CommonModule } from '@angular/common';
import { NbOptionModule } from '../option/option-list.module';
const NB_AUTOCOMPLETE_COMPONENTS = [
NbAutocompleteComponent,
NbAutocompleteDirective,
];
export class NbAutocompleteModule {
}
NbAutocompleteModule.decorators = [
{ type: NgModule, args: [{
imports: [
CommonModule,
FormsModule,
NbOverlayModule,
NbCardModule,
NbOptionModule,
],
exports: [
...NB_AUTOCOMPLETE_COMPONENTS,
NbOptionModule,
],
declarations: [...NB_AUTOCOMPLETE_COMPONENTS],
},] }
];
//# sourceMappingURL=autocomplete.module.js.map