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

18 lines
495 B
TypeScript

import { IBaseProps } from '../../_util/base';
export interface IRadioGroupProps extends IBaseProps {
value: string;
defaultValue: string;
name: string;
disabled?: boolean;
color: string;
position: 'horizontal' | 'vertical';
onChange?: (value: string, e: any) => void;
options: {
label?: string;
value?: string;
disabled?: boolean;
color?: string;
}[];
}
export declare const RadioGroupDefaultProps: Partial<IRadioGroupProps>;