UNPKG

@ant-design/react-native

Version:

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

13 lines (12 loc) 344 B
import React from 'react'; import { PickerProps } from './PickerTypes'; declare class Picker extends React.Component<PickerProps, {}> { static defaultProps: { children: never[]; }; static Item: any; getValue(): any; shouldComponentUpdate(nextProps: any): boolean; render(): JSX.Element; } export default Picker;