bazi-mcp
Version:
[](https://smithery.ai/server/@cantian-ai/bazi-mcp)
19 lines (18 loc) • 404 B
TypeScript
import { EightChar } from 'tyme4ts';
type RelationInfo = {
柱: string;
[key: string]: any;
};
type Relation = {
[zhu: string]: {
天干: {
[key: string]: RelationInfo[];
};
地支: {
[key: string]: RelationInfo[];
};
[key: string]: any;
};
};
export declare function getRelation(eightChar: EightChar): Relation;
export {};