UNPKG

@reactjsonforms/antd-renderers

Version:

Ant Design Renderer Set for JSON Forms

9 lines (8 loc) 301 B
import { ControlProps, ControlState } from '@reactjsonforms/core'; import { Control } from '@reactjsonforms/react'; export interface WithInput { input: any; } export declare abstract class InputControl extends Control<ControlProps & WithInput, ControlState> { render(): JSX.Element; }