UNPKG

react-day-picker

Version:

Flexible date picker component for React

14 lines (12 loc) 327 B
import * as React from 'react'; import { DayPickerInputProps } from './Props'; import DayPicker from './DayPicker'; export default class DayPickerInput extends React.Component< DayPickerInputProps, any > { showDayPicker: () => void; hideDayPicker: () => void; getDayPicker: () => DayPicker; getInput: () => any; }