UNPKG

lunar-typescript-optimize

Version:

A TypeScript library for Solar and Chinese Lunar calendar calculations, with optimized build and browser compatibility

17 lines (16 loc) 427 B
import { DaYun } from './DaYun'; export declare class XiaoYun { private readonly _year; private readonly _age; private readonly _index; private _daYun; private _lunar; private readonly _forward; constructor(daYun: DaYun, index: number, forward: boolean); getYear(): number; getAge(): number; getIndex(): number; getGanZhi(): string; getXun(): string; getXunKong(): string; }