UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

20 lines (19 loc) 625 B
/** * Makes sure the month is within the min and max daterange to avoid showing disabled months * @note We do not warn the user if start > end now */ declare const clampDisplayMonth: ({ month, start, end, }: { month?: Date; start?: Date; end?: Date; }) => Date | undefined; /** * Makes sure the month is within the min and max daterange to avoid showing disabled months * @note We do not warn the user if start > end now */ declare const clampDisplayYear: ({ month, start, end, }: { month?: Date; start?: Date; end?: Date; }) => Date | undefined; export { clampDisplayYear, clampDisplayMonth };