formgen-react
Version:
Formula generator with JSON for react. UI Fabric controls are used for rendering
10 lines (9 loc) • 336 B
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 declare class CustomActions {
typeName: string;
actionType: onCustomAction;
}
export declare type onCustomAction = (formData: any) => void;