yi-jing-oracle
Version:
The Yi Jing, the Oracle of Changes, available in algorithmic form along with the relevant metadata to understand it's meaning.
16 lines (15 loc) • 365 B
TypeScript
export interface Trigram {
number: number;
names: string[];
chinese_name: string;
pinyin_name: string;
character: string;
attribute: string;
images: string[];
chinese_image: string;
pinyin_image: string;
family_relationship: string;
binary: string;
line_numbers: number[];
}
export declare const trigrams: Trigram[];