UNPKG

jamis

Version:

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

7 lines (6 loc) 380 B
import type { FormItemRendererFC } from 'jamis-core'; import type { CheckboxControlSchema, FormControlProps } from '../types'; interface CheckboxProps extends FormControlProps, Omit<CheckboxControlSchema, 'type' | 'className' | 'descriptionClassName' | 'inputClassName' | 'onChange'> { } export declare const CheckboxControlRenderer: FormItemRendererFC<CheckboxProps>; export {};