poland-public-holidays
Version:
compute dates of public holidays in Poland
17 lines (16 loc) • 712 B
TypeScript
declare const invalidDates: (string | number | boolean | Date | (() => void) | null | undefined)[];
declare const invalidYears: (string | number | boolean | Date | (() => void) | null | undefined)[];
declare const validDates: (string | Date)[];
declare const validYears: (string | number | Date)[];
declare const holidaysInYears: {
year: number;
holidayName: string;
holidayDate: string;
}[];
declare const yearsInPastAndFuture: number[];
declare const existingHolidays: {
date: string;
name: string;
}[];
declare const nonHolidays: string[];
export { invalidDates, invalidYears, validDates, validYears, holidaysInYears, yearsInPastAndFuture, existingHolidays, nonHolidays };