UNPKG

anylang

Version:

A translator's kit that uses the free APIs of Google Translate, Yandex, Bing, ChatGPT, and other LLMs

9 lines (8 loc) 250 B
import { TranslatorConstructor } from '../Translator'; export declare function getTranslatorsScore(translators: TranslatorConstructor[], reference: { text: string; translation: string; }): Promise<{ name: string; score: number; }[]>;