/** * Checkbox 多选框的属性 */ import { BaseProps } from '.' export interface CheckboxProps extends BaseProps { /** * 自动获取焦点 */ autofocus?: boolean /** * 设置 indeterminate 状态,只负责样式控制 */ indeterminate?: boolean /** * 与 CheckboxGroup 组合使用时的值 */ value?: boolean | string | number /** * 标签 */ label: string } export type RadioProps = CheckboxProps