UNPKG

nepali-date-selector

Version:
14 lines (12 loc) 439 B
import { FunctionComponent } from 'react'; import { ParsedDate } from '../../Types'; interface CalenderControllerProps { onNextMonth: () => void; onPreviousMonth: () => void; onToday: () => void; onYearSelect: (year: number) => void; onMonthSelect: (year: number) => void; calenderDate: ParsedDate; } declare const CalenderController: FunctionComponent<CalenderControllerProps>; export default CalenderController;