UNPKG

auto-translate-json-library

Version:

Automatically translates JSON language files to other languages using Google Translate,AWS,Azure,DeepL,OpenAI or local OpenAI compatible server

8 lines (7 loc) 237 B
export interface ITranslate { isValidLocale(targetLocale: string): boolean; translateText(text: string, sourceLocale: string, targetLocale: string): Promise<string>; } export interface TranslationFile { [key: string]: any; }