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) • 1 kB
TypeScript
import brightnessEnUS from '../locales/en-US/brightness';
import brightnessJaJP from '../locales/ja-JP/brightness';
import brightnessKoKR from '../locales/ko-KR/brightness';
import brightnessZhCN from '../locales/zh-CN/brightness';
import brightnessZhTW from '../locales/zh-TW/brightness';
import brightnessViVN from '../locales/vi-VN/brightness';
type BrightnessEnUS = (typeof brightnessEnUS)[keyof typeof brightnessEnUS];
type BrightnessJaJP = (typeof brightnessJaJP)[keyof typeof brightnessJaJP];
type BrightnessKoKR = (typeof brightnessKoKR)[keyof typeof brightnessKoKR];
type BrightnessZhCN = (typeof brightnessZhCN)[keyof typeof brightnessZhCN];
type BrightnessZhTW = (typeof brightnessZhTW)[keyof typeof brightnessZhTW];
type BrightnessViVN = (typeof brightnessViVN)[keyof typeof brightnessViVN];
export type Brightness = '' | BrightnessEnUS | BrightnessJaJP | BrightnessKoKR | BrightnessZhCN | BrightnessZhTW | BrightnessViVN;
export type BrightnessKey = keyof typeof brightnessZhCN;
export {};