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 | 40x 40x 40x | import { ChangeDetectionStrategy, Component } from '@angular/core';
import { FieldType } from '@ngx-formly/core';
// eslint-disable-next-line ish-custom-rules/require-formly-code-documentation
@Component({
selector: 'ish-formly-testing-example',
templateUrl: './formly-testing-example.component.html',
changeDetection: ChangeDetectionStrategy.Default,
})
export class FormlyTestingExampleComponent extends FieldType {}
|