2024-12-01 11:56:54 +00:00
|
|
|
|
import { IBaseProps } from '../_util/base';
|
2024-11-10 07:01:22 +00:00
|
|
|
|
/**
|
|
|
|
|
* @description 复选框,表单组件。
|
|
|
|
|
*/
|
|
|
|
|
export interface ICheckboxProps extends IBaseProps {
|
2024-12-01 11:56:54 +00:00
|
|
|
|
value?: any;
|
|
|
|
|
checked: boolean;
|
|
|
|
|
defaultChecked?: boolean;
|
|
|
|
|
disabled: boolean;
|
|
|
|
|
color: string;
|
|
|
|
|
onChange?: (checked: boolean, e: any) => void;
|
2024-11-10 07:01:22 +00:00
|
|
|
|
}
|
|
|
|
|
export declare const CheckboxDefaultProps: Partial<ICheckboxProps>;
|