UNPKG

465 BTypeScriptView Raw
1import { DropdownOption } from "../components/Dropdown.js";
2import type { Locale } from "../lib/dateLib.js";
3import type { DateLib, Formatters } from "../types/index.js";
4/** Return the months to show in the dropdown. */
5export declare function getMonthOptions(displayMonth: Date, navStart: Date | undefined, navEnd: Date | undefined, formatters: Pick<Formatters, "formatMonthDropdown">, locale: Locale | undefined, dateLib: DateLib): DropdownOption[] | undefined;