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

17 lines
491 B
TypeScript
Raw Normal View History

2024-11-15 03:51:28 +00:00
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>;