UNPKG

react-wheel-datepicker-ts

Version:
14 lines (13 loc) 315 B
import React from 'react'; import { Unit } from './types'; interface Props { type: Unit; value: Date; min: Date; max: Date; format: string | ((date: Date) => string); step: number; onSelect: Function; } declare const _default: React.NamedExoticComponent<Props>; export default _default;