UNPKG

@freizl/yijing

Version:
52 lines (43 loc) 1.75 kB
/////////////////////////////////////////////////////////////////////////////// // Shuo Gua // /////////////////////////////////////////////////////////////////////////////// export type ShuoGuaTexts = { title: string; content: Array<string>; }; /////////////////////////////////////////////////////////////////////////////// // Wen Yan // /////////////////////////////////////////////////////////////////////////////// export type WenYanParagraph = { subtitle: string; content: Array<string>; }; export type WenYanTexts = { title: string; content: Array<WenYanParagraph>; }; /////////////////////////////////////////////////////////////////////////////// // Xi Ci // /////////////////////////////////////////////////////////////////////////////// export type XiCiParagraph = { subtitle: string; content: Array<string>; }; export type XiCiTexts = { title: string; content: Array<XiCiParagraph>; }; /////////////////////////////////////////////////////////////////////////////// // Xu Gua // /////////////////////////////////////////////////////////////////////////////// export type XuGuaTexts = { title: string; content: Array<string>; }; /////////////////////////////////////////////////////////////////////////////// // Za Gua // /////////////////////////////////////////////////////////////////////////////// export type ZaGuaTexts = { title: string; content: Array<string>; };