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.

18 lines (17 loc) 598 B
import { GenderName } from '../i18n'; import FunctionalStar from './FunctionalStar'; /** * 安杂耀 * * @param solarDateStr 阳历日期字符串 * @param timeIndex 时辰索引【0~12】 * @param gender 性别 @v2.5.0 新增,用于判断阳男阴女/阴男阳女 * @param fixLeap 是否修复闰月,假如当月不是闰月则不生效 * @returns 38杂耀 */ export declare const getAdjectiveStar: ({ solarDateStr, timeIndex, gender, fixLeap, }: { solarDateStr: string; timeIndex: number; gender: GenderName; fixLeap?: boolean | undefined; }) => FunctionalStar[][];