formgen-react
Version:
Formula generator with JSON for react. UI Fabric controls are used for rendering
10 lines (9 loc) • 327 B
text/typescript
/**
* Class for the Custom Actions. The Name as to be Name of Custom Action Type
* The Type of Action has to be the type of an Action that is type of onCustomAction.
*/
export class CustomActions {
typeName:string;
actionType: onCustomAction;
}
export declare type onCustomAction = (formData: any) => void;