import { NgModule } from "@angular/core";
import { FormsModule } from "@angular/forms";
import { CommonModule } from "@angular/common";
// imports
import { Select } from "./select.component";
import { Option } from "./option.directive";
import { OptGroup } from "./optgroup.directive";
@NgModule({
declarations: [
Select,
Option,
OptGroup
],
exports: [
Select,
Option,
OptGroup
],
imports: [
CommonModule,
FormsModule
]
})
class SelectModule { }
export { Select, Option, OptGroup, SelectModule };