iztro-hook
Version:
A hook of iztro。紫微斗数开源库iztro的react钩子函数。
13 lines (12 loc) • 331 B
TypeScript
import { Config, Language } from 'iztro/lib/data/types';
import { GenderName } from 'iztro/lib/i18n';
export type IztroInput = {
birthday: string;
birthTime: number;
gender: GenderName;
birthdayType: 'lunar' | 'solar';
isLeapMonth?: boolean;
fixLeap?: boolean;
lang?: Language;
options?: Config;
};