UNPKG

react-day-picker

Version:

Customizable Date Picker for React

9 lines (8 loc) 444 B
import { DayPickerProps } from '../DayPicker'; import { DayPickerBase } from './DayPickerBase'; /** The props for the [[DayPicker]] component when using `mode="default"` or `undefined`. */ export interface DayPickerDefaultProps extends DayPickerBase { mode?: 'default'; } /** Returns true when the props are of type [[DayPickerDefault]]. */ export declare function isDayPickerDefault(props: DayPickerProps): props is DayPickerDefaultProps;