UNPKG

ngx-schema-forms

Version:

New features: - Ajv schema validator. - Angular forms compatible: Property tree is created using FormGroup, FormArray and FormControl classes. - Array now properly loads initial data from model. - WidgetTyep: WidgetRegistry now supports WidgetType, now wo

8 lines (7 loc) 258 B
import { ValidatorFn } from '@angular/forms'; export declare class ValidatorRegistry { private validators; register(path: string, validator: ValidatorFn | ValidatorFn[]): void; get(path: string): ValidatorFn | ValidatorFn[]; clear(): void; }