UNPKG

@ant-design/react-native

Version:

基于蚂蚁金服移动设计规范的 React Native 组件库

27 lines (26 loc) 662 B
import React from 'react'; declare type RadioValue = string | number; interface EventRadioGroup { target: { value: RadioValue; }; } interface EventRadioItem { target: { checked: boolean; }; } export default class BasicRadioExample extends React.Component<any, any> { state: { disabled: boolean; part1Value: number; part2Value: number; part3Value: number; }; toggleDisabled: () => void; onChange: (part1Value: any, e: EventRadioItem) => void; onGroupChange2: (e: EventRadioGroup) => void; onGroupChange3: (e: EventRadioGroup) => void; render(): JSX.Element; } export {};