ngx-type-ahead
Version:
Typeahead multi-select dropdown component for angular
17 lines (16 loc) • 553 B
JavaScript
import { TypeaheadComponent } from './typeahead.component';
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
var TypeaheadModule = /** @class */ (function () {
function TypeaheadModule() {
}
TypeaheadModule.decorators = [
{ type: NgModule, args: [{
imports: [CommonModule],
declarations: [TypeaheadComponent],
exports: [TypeaheadComponent]
},] },
];
return TypeaheadModule;
}());
export { TypeaheadModule };