mistval / unofficial-jisho-api

Encapsulates the official Jisho.org API and also provides kanji, example, and stroke diagram search.
MIT License
139 stars 14 forks source link

TS bindings for phrase scrape have incorrect type for meanings property #15

Closed mistval closed 4 years ago

mistval commented 4 years ago
export interface ScrapeParseResult extends QueryResult {
  tags: string[];
  meanings: string[]; // This is wrong
  otherForms: string[];
  notes: string[];
}
mistval commented 4 years ago

Fixed in 97b00999007f