UNPKG

395 BTypeScriptView Raw
1import { DropdownOption } from "../components/Dropdown.js";
2import type { DateLib, Formatters } from "../types/index.js";
3/** Return the years to show in the dropdown. */
4export declare function getYearOptions(displayMonth: Date, calendarStart: Date | undefined, calendarEnd: Date | undefined, formatters: Pick<Formatters, "formatYearDropdown">, dateLib: DateLib): DropdownOption[] | undefined;