Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | 33x 33x 33x 33x 33x 33x 33x 33x | import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { ReactiveFormsModule } from '@angular/forms'; import { FormlyModule } from '@ngx-formly/core'; import { FormlyTestingContainerComponent } from './formly-testing-container/formly-testing-container.component'; import { FormlyTestingExampleComponent } from './formly-testing-example/formly-testing-example.component'; import { FormlyTestingFieldgroupExampleComponent } from './formly-testing-fieldgroup-example/formly-testing-fieldgroup-example.component'; @NgModule({ imports: [CommonModule, FormlyModule.forRoot(), ReactiveFormsModule], declarations: [ FormlyTestingContainerComponent, FormlyTestingExampleComponent, FormlyTestingFieldgroupExampleComponent, ], exports: [FormlyTestingContainerComponent, FormlyTestingExampleComponent], }) // eslint-disable-next-line ish-custom-rules/project-structure export class FormlyTestingComponentsModule {} |