formgen-react
Version:
Formula generator with JSON for react. UI Fabric controls are used for rendering
10 lines (9 loc) • 364 B
TypeScript
/// <reference types="react" />
import * as React from 'react';
import { IInnerControl } from './InnerControl.types';
/**
* Inner Control. Use show the correct inner part of an control. Renders the Label, the child properties and the Info Callout.
*/
export declare class InnerControl extends React.Component<IInnerControl> {
render(): JSX.Element;
}