jiaqingjiayi-xiaochengxu/甲情_甲意/miniprogram/node_modules/antd-mini/less/Checkbox/props.d.ts
2024-11-10 15:01:22 +08:00

13 lines
325 B
TypeScript

import { IBaseProps } from '../_base';
/**
* @description 复选框,表单组件。
*/
export interface ICheckboxProps extends IBaseProps {
checked?: boolean;
disabled?: boolean;
color?: string;
onChange?: (checked: boolean, e: any) => void;
}
export declare const CheckboxDefaultProps: Partial<ICheckboxProps>;