UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

14 lines (13 loc) 535 B
import { Locale } from "date-fns"; /** Return the months to show in the dropdown. */ export declare function getMonthOptions(displayMonth: Date, navStart: Date | undefined, navEnd: Date | undefined, locale: Locale): { value: number; label: string; disabled: boolean; }[] | undefined; /** Return the years to show in the dropdown. */ export declare function getYearOptions(navStart: Date | undefined, navEnd: Date | undefined, locale: Locale): { value: number; label: string; disabled: boolean; }[] | undefined;