aboutsummaryrefslogtreecommitdiffstats
path: root/deprecated-workflow-designer/sdc-workflow-designer-ui/src/app/shared/input/wfm-text-input.module.ts
blob: d0e83ddbae25828ea59671a02fae940a5b19fdae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { TranslateModule } from '@ngx-translate/core';
import { FormsModule } from '@angular/forms';
import { WfmTextInputComponent } from './wfm-text-input.component';

@NgModule({
    imports: [TranslateModule, CommonModule, FormsModule],
    declarations: [WfmTextInputComponent],
    exports: [WfmTextInputComponent]
})

export class WfmInputModule {

}