UNPKG

hellenic-holidays

Version:

A modern TypeScript package for Greek holidays and Orthodox celebrations

17 lines (16 loc) 332 B
export declare enum HolidayType { PUBLIC = "public", CUSTOMARY = "customary", RELIGIOUS = "religious" } export interface Holiday { date: Date; nameEn: string; nameEl: string; type: HolidayType; isMovable: boolean; } export interface HolidayResponse { isHoliday: boolean; holiday?: Holiday; }