mcp-tung-shing
Version:
A Model Context Protocol plugin for Chinese Tung Shing (黄历/通勝/通胜) almanac calculations
12 lines (11 loc) • 375 B
TypeScript
import dayjs from 'dayjs';
import type { AlmanacContentItem, DailyAlmanac } from './types';
import 'dayjs/locale/zh-cn.js';
/**
* 获取时辰黄历信息
*/
export declare function getHourlyAlmanac(date: dayjs.Dayjs): AlmanacContentItem;
/**
* 获取每日黄历信息
*/
export declare function getDailyAlmanac(date: dayjs.Dayjs, includeHours?: boolean): DailyAlmanac;