This commit is contained in:
Ling53666
2025-08-18 09:11:51 +08:00
commit 02554225da
2516 changed files with 133155 additions and 0 deletions

View File

@ -0,0 +1,16 @@
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>;