UNPKG

nepali-date-selector

Version:
13 lines (12 loc) 450 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;