lunisolar
Version:
专业农历库,支持公历阴历互转,支持各类黄历数据查询,如八字四柱、阴历、神煞宜忌、时辰吉凶、建除十二神、胎神占方、五行纳音等。支持自定义插件。
16 lines (14 loc) • 437 B
text/typescript
import { commonGods } from '../gods/commonGods'
import { yearGods } from '../gods/yearGods'
import { monthGods } from '../gods/monthGods'
import { dayGods } from '../gods/dayGods'
import { hourGods } from '../gods/hourGods'
import { monthSeasonGods } from '../gods/monthSeasonGods'
export const godsDicts = {
common: commonGods,
year: yearGods,
month: monthGods,
day: dayGods,
hour: hourGods,
monthSeason: monthSeasonGods
}