UNPKG

@shinyongjun/react-datepicker

Version:
15 lines (14 loc) 509 B
import { ITimeValue, TIsVisible } from '../../types/props'; interface Iprops { type: TIsVisible; value: Date | null; pairValue: Date | null; onChange?: (newValue: Date | null) => void; monthPage: number; weekdayLabels: string[]; timeValue: ITimeValue; holidays: string[]; } export default function RangePickerMonth({ type, // start | end value, pairValue, onChange, monthPage, weekdayLabels, timeValue, holidays, }: Iprops): import("react/jsx-runtime").JSX.Element; export {};