jiaqingjiayi-xiaochengxu/甲情_甲意/node_modules/antd-mini/less/Radio/props.d.ts
2024-11-15 11:51:28 +08:00

17 lines
491 B
TypeScript

import { IBaseProps } from '../_util/base';
export interface IRadioProps extends IBaseProps {
/**
* @description 组件值,选中时 change 事件会携带的 value。
*/
value?: string;
defaultChecked?: boolean;
/**
* @description radio 的颜色,同 CSS 色值。
*/
color?: string;
checked?: boolean;
disabled?: boolean;
onChange?: (checked: boolean, e: any) => void;
}
export declare const RadioDefaultProps: Partial<IRadioProps>;