datepicker-nepali-reactjs
Version:
React Nepali Date Picker
13 lines (12 loc) • 456 B
TypeScript
import { FunctionComponent } from "react";
import { ParsedDate } from "../../types/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;