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

10 lines (9 loc) 236 B
import { Action } from './action'; export declare class ActionRegistry { actions: { [key: string]: Action; }; clear(): void; register(actionId: string, action: Action): void; get(actionId: string): Action; }