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.
21 lines (20 loc) • 463 B
TypeScript
export interface Hexagram {
number: number;
names: string[];
chinese_name: string;
pinyin: string;
character: string;
top_trigram: number;
bottom_trigram: number;
binary: string;
lines_string: string;
line_numbers: number[];
description: string;
title: string;
heaven: string;
summary: string;
judgement: string[];
image: string[];
lines: string[];
}
export declare const hexagrams: Hexagram[];