提交
This commit is contained in:
16
甲情_甲意/miniprogram/node_modules/antd-mini/es/Radio/props.d.ts
generated
vendored
Normal file
16
甲情_甲意/miniprogram/node_modules/antd-mini/es/Radio/props.d.ts
generated
vendored
Normal 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>;
|
Reference in New Issue
Block a user