UNPKG

jamis

Version:

一种支持通过JSON配置方式生成页面的组件库

4 lines (3 loc) 311 B
import type { RefObject } from 'react'; import type { FormItemConfig, FormItemProps, RenderControlFn } from './types'; export declare const useFormItem: (props: FormItemProps, config: Omit<FormItemConfig, "component">, controlRef: RefObject<HTMLDivElement>, renderInnerControl: RenderControlFn) => JSX.Element;