UNPKG

zh-translator

Version:
14 lines (11 loc) 263 B
interface Inflection { type: string; value: string; } interface Translation { word: string; translation: string; inflection: Inflection[]; } declare function translate(word: string): Promise<Translation[] | undefined>; export { translate };