UNPKG

ngx-eagle

Version:

UI component infrastructure and Design components for mobile and desktop Angular web applications.

19 lines (17 loc) 425 B
import { NgModule } from '@angular/core'; import { FormFieldComponent } from './form-field.component'; import { PrefixDirective } from './prefix.directive'; import { SuffixDirective } from './suffix.directive'; @NgModule({ exports: [ FormFieldComponent, PrefixDirective, SuffixDirective ], imports: [ FormFieldComponent, PrefixDirective, SuffixDirective ] }) export class FormFieldModule { }