UNPKG

@ant-design/react-native

Version:

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

9 lines (8 loc) 406 B
import { FunctionComponent } from 'react'; import { PickerViewStyle } from '../picker-view/style'; import { WithThemeStyles } from '../style'; import { DatePickerViewPropsType } from './PropsType'; export interface DatePickerViewProps extends DatePickerViewPropsType, WithThemeStyles<PickerViewStyle> { } declare const DatePickerView: FunctionComponent<DatePickerViewProps>; export default DatePickerView;