lunar-typescript-optimize
Version:
A TypeScript library for Solar and Chinese Lunar calendar calculations, with optimized build and browser compatibility
14 lines (13 loc) • 401 B
TypeScript
export declare class FotoFestival {
private readonly _name;
private readonly _result;
private readonly _everyMonth;
private readonly _remark;
constructor(name: string, result?: string, everyMonth?: boolean, remark?: string);
getName(): string;
getResult(): string;
isEveryMonth(): boolean;
getRemark(): string;
toString(): string;
toFullString(): string;
}