UNPKG

iztro

Version:

轻量级紫微斗数星盘生成库。可以通过出生年月日获取到紫微斗数星盘信息、生肖、星座等信息。This is a lightweight kit for generating astrolabes for Zi Wei Dou Shu (The Purple Star Astrology), an ancient Chinese astrology. It allows you to obtain your horoscope and personality analysis.

11 lines (10 loc) 458 B
import FunctionalStar from './FunctionalStar'; /** * 安14辅星,寅宫下标为0,若下标对应的数组为空数组则表示没有星耀 * * @param solarDateStr 阳历日期字符串 * @param timeIndex 时辰索引【0~12】 * @param fixLeap 是否修复闰月,假如当月不是闰月则不生效 * @returns 14辅星 */ export declare const getMinorStar: (solarDateStr: string, timeIndex: number, fixLeap?: boolean) => FunctionalStar[][];