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.

16 lines (15 loc) 723 B
import { CHINESE_TIME, LANGUAGES, TIME_RANGE } from '../constants'; /** 支持的语言 */ export type Language = (typeof LANGUAGES)[number]; /** 阴阳 */ export type YinYang = '阴' | '阳'; /** 五行 */ export type FiveElements = '木' | '金' | '水' | '火' | '土'; /** 时辰,子时分早晚 */ export type ChineseTime = (typeof CHINESE_TIME)[number]; /** 时辰对应的时间段 */ export type TimeRange = (typeof TIME_RANGE)[number]; /** 范围:本命|大限|流年|流月|流日|流时 */ export type Scope = 'origin' | 'decadal' | 'yearly' | 'monthly' | 'daily' | 'hourly'; /** 星耀类型 */ export type StarType = 'major' | 'soft' | 'tough' | 'adjective' | 'flower' | 'helper' | 'lucun' | 'tianma';