blob: cb5f914cdda105b1b5ad9225edf73d73ad18c1a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { DynamicInputsComponent } from '../components/dynamic-inputs/dynamic-inputs.component';
import { AngularMultiSelectModule } from "angular2-multiselect-dropdown";
import { DynamicInputLabelPipe } from '../shared/pipes/dynamicInputLabel/dynamic-input-label.pipe';
@NgModule({
imports: [
CommonModule, FormsModule, ReactiveFormsModule, AngularMultiSelectModule
],
providers: [],
declarations: [ DynamicInputLabelPipe, DynamicInputsComponent ],
entryComponents: [],
exports: [ DynamicInputLabelPipe, DynamicInputsComponent ]
})
export class InputsModule { }
|