antd-mobile
Version:
基于 React 的移动设计规范实现
17 lines (16 loc) • 601 B
TypeScript
import * as React from 'react';
import RadioProps from './RadioPropsType';
export default class Radio extends React.Component<RadioProps, any> {
static propTypes: {
style: React.Requireable<any>;
checked: React.Requireable<any>;
defaultChecked: React.Requireable<any>;
disabled: React.Requireable<any>;
onChange: React.Requireable<any>;
};
static RadioItem: any;
constructor(props: RadioProps, context: any);
componentWillReceiveProps(nextProps: RadioProps, nextContext: any): void;
handleClick: () => void;
render(): JSX.Element;
}