UNPKG

@ant-design/react-native

Version:

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

8 lines (7 loc) 306 B
import React from 'react'; import { DatePickerPropsType } from './PropsType'; export type DatePickerRef = any; export interface DatePickerProps extends DatePickerPropsType { } declare const DatePicker: React.ForwardRefExoticComponent<DatePickerProps & React.RefAttributes<any>>; export default DatePicker;