UNPKG

@formql/core

Version:

FormQL - A framework for building dynamic forms

12 lines (11 loc) 260 B
export declare enum FormActionType { Validate = "validate", ValidateAndSave = "validateAndSave", Save = "save", Custom = "custom" } export interface FormAction { key: FormActionType; customkey: string; parameters: any; }