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

7 lines (6 loc) 228 B
import { FormProperty } from './form-property'; export interface ActionEvent<T = any> { event: T; formProperty: FormProperty; } export declare type Action<T = any, U = any> = (event: ActionEvent<T>, params?: U) => void;