formgen-react
Version:
Formula generator with JSON for react. UI Fabric controls are used for rendering
15 lines (14 loc) • 466 B
TypeScript
import { DynamicControl } from "../objects/DynamicControl.types";
/**
* Class the prepare the matching from the ControlTypes enum to the real control types.
*/
export declare class FormInputs {
/**
* Array with all registered Controls to that can be used in the form.
*/
protected controls: DynamicControl[];
/**
* Ge tall defined standart controls as Dynamic Control array
*/
getStandartControls(): DynamicControl[];
}