UNPKG

chinese-days

Version:

中国节假日、调休日、工作日、24节气查询,农历阳历互转,支持 TS、CommonJS、UMD 模块化使用,提供 ics 日历格式,可供 Google Calendar、Apple Calendar、Microsoft Outlook 等客户端订阅。

19 lines (16 loc) 478 B
import * as HolidayUtils from "./holidays"; import * as SolarTerm from "./solar_terms"; import * as SolarLunar from "./solar_lunar"; import * as LunarFolkFestival from "./lunar_folk_festival"; // 单独导出这些方法和类型 export * from "./holidays"; export * from "./solar_terms"; export * from "./solar_lunar"; export * from "./lunar_folk_festival"; // 默认导出所有 export default { ...HolidayUtils, ...SolarTerm, ...SolarLunar, ...LunarFolkFestival, }