UNPKG

formgen-react

Version:

Formula generator with JSON for react. UI Fabric controls are used for rendering

10 lines (9 loc) 369 B
import { ControlTypes } from "../Enums"; /** * Class for the Dynamic Control. The Name as to be even the ControlType or any other Name of Custom Control * The Type of Controls has to be the type of an control. Default Controls are defined at the folder "controls" */ export class DynamicControl { typeName:ControlTypes | string; controlType: any; }