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
9 lines (8 loc) • 370 B
TypeScript
import { FormControl } from '@angular/forms';
import { FormProperty } from './form-property';
import { Schema } from '../schema';
declare const GenericProperty_base: typeof FormControl & (new (...args: any[]) => FormProperty);
export declare class GenericProperty extends GenericProperty_base {
constructor(path: string, schema: Schema);
_updateValue(): void;
}