lunar-typescript-optimize
Version:
A TypeScript library for Solar and Chinese Lunar calendar calculations, with optimized build and browser compatibility
14 lines (13 loc) • 350 B
TypeScript
export declare class NineStar {
private readonly _index;
static fromIndex(index: number): NineStar;
constructor(index: number);
getNumber(): string;
getColor(): string;
getWuXing(): string;
getPosition(): string;
getPositionDesc(): string;
getIndex(): number;
toString(): string;
toFullString(): string;
}