File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ---
2+ ' @birchill/jpdict-idb ' : minor
3+ ---
4+
5+ Added Korean kanja and Vietnamese kanji readings
Original file line number Diff line number Diff line change @@ -190,6 +190,9 @@ const ReadingsStruct: s.Describe<KanjiReading> = s.type({
190190 kun : s . optional ( s . array ( s . string ( ) ) ) ,
191191 na : s . optional ( s . array ( s . string ( ) ) ) ,
192192 py : s . optional ( s . array ( s . string ( ) ) ) ,
193+ kr : s . optional ( s . array ( s . string ( ) ) ) ,
194+ kh : s . optional ( s . array ( s . string ( ) ) ) ,
195+ vi : s . optional ( s . array ( s . string ( ) ) ) ,
193196} ) ;
194197
195198const RadicalStruct : s . Describe < Radical > = s . type ( {
Original file line number Diff line number Diff line change @@ -16,6 +16,9 @@ export type KanjiReading = {
1616 kun ?: Array < string > ;
1717 na ?: Array < string > ;
1818 py ?: Array < string > ;
19+ kr ?: Array < string > ;
20+ kh ?: Array < string > ;
21+ vi ?: Array < string > ;
1922} ;
2023
2124export type Radical = { x : number ; nelson ?: number ; name ?: Array < string > } ;
You can’t perform that action at this time.
0 commit comments