reactnativecomponents
Version:
React Native Components
16 lines (15 loc) • 446 B
TypeScript
import AbstractFormComponent from '../Form/AbstractFormComponent';
import Props from './Props';
/**
* @author 田尘殇Sean(sean.snow@live.com)
* @date 16/5/7
*/
export default class Switch extends AbstractFormComponent<Props, any> {
state: any;
constructor(props: any);
componentWillReceiveProps(nextProps: any): void;
onValueChange(value: any): void;
getValue(): any;
isValid(): boolean;
render(): JSX.Element;
}