UNPKG

amis

Version:

一种MIS页面生成工具

14 lines (13 loc) 428 B
import React from 'react'; import { FormControlProps } from './Item'; export interface CheckboxProps extends FormControlProps { option?: string; trueValue?: any; falseValue?: any; } export default class CheckboxControl extends React.Component<CheckboxProps, any> { static defaultProps: Partial<CheckboxProps>; render(): JSX.Element; } export declare class CheckboxControlRenderer extends CheckboxControl { }