swedish-holidays
Version:
Library for calculating the date of all swedish holidays for any given year.
8 lines (7 loc) • 333 B
TypeScript
import { EasterSundayDependant } from './easter-sunday';
import { IHolidayOptions } from '../holidays.interface';
export default class PentecostEve extends EasterSundayDependant implements EasterSundayDependant {
isPublicHoliday: boolean;
constructor({ year, language }?: IHolidayOptions);
static easterOffset: number;
}