jiaqingjiayi-xiaochengxu/甲情_甲意/node_modules/antd-mini/less/Checkbox/props.d.ts

14 lines
381 B
TypeScript
Raw Normal View History

2024-11-15 03:51:28 +00:00
import { IBaseProps } from '../_util/base';
/**
* @description
*/
export interface ICheckboxProps extends IBaseProps {
value?: any;
checked: boolean;
defaultChecked?: boolean;
disabled: boolean;
color: string;
onChange?: (checked: boolean, e: any) => void;
}
export declare const CheckboxDefaultProps: Partial<ICheckboxProps>;