UNPKG

etymo-js

Version:

NodeJS and browser util for fetching etymology results from https://www.etymonline.com

10 lines (9 loc) 248 B
export type Language = "cn" | "de" | "en" | "es" | "fr" | "it" | "jp" | "kr" | "pt"; export interface EntryWithoutPathId { term: string; def: string; } export interface Entry extends EntryWithoutPathId { path: string; id: string; }