UNPKG

@ant-design/react-native

Version:

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

16 lines (15 loc) 628 B
import React from 'react'; import { StyleProp, TextStyle } from 'react-native'; import { WithThemeStyles } from '../style'; import { RadioPropsType } from './PropsType'; import { RadioStyle } from './style/index'; export interface RadioNativeProps extends RadioPropsType, WithThemeStyles<RadioStyle> { style?: StyleProp<TextStyle>; } export default class Radio extends React.Component<RadioNativeProps, any> { static RadioItem: any; constructor(props: RadioNativeProps, context: any); UNSAFE_componentWillReceiveProps(nextProps: RadioNativeProps): void; handleClick: () => void; render(): JSX.Element; }