kenat
Version:
A JavaScript library for the Ethiopian calendar with date and time support.
31 lines (28 loc) • 811 B
JavaScript
import { Kenat } from './Kenat.js';
import { MonthGrid } from './MonthGrid.js';
import { toEC, toGC } from './conversions.js';
import { toArabic, toGeez } from './geezConverter.js';
import { getHolidaysInMonth, getHoliday, getHolidaysForYear } from './holidays.js';
import { Time } from './Time.js';
import { HolidayTags } from './constants.js';
import { getBahireHasab } from './bahireHasab.js';
import { monthNames } from './constants.js';
import { getFastingPeriod } from './fasting.js';
// Default export is the Kenat class directly
export default Kenat;
// Named exports for the conversion functions
export {
toEC as toEC,
toGC,
toArabic,
toGeez,
getHolidaysInMonth,
getHolidaysForYear,
getBahireHasab,
getFastingPeriod,
MonthGrid,
Time,
getHoliday,
HolidayTags,
monthNames,
};