i18n-llm-translate
Version:
Automatically translates namespace-based JSON translation files across multiple languages from any source language
4 lines (3 loc) • 343 B
TypeScript
import { TranslateEngineTranslateResult, TranslateNamespace, TranslateOptions } from "./type";
export declare function readTranslationsNamespaces(options: TranslateOptions): Promise<TranslateNamespace[]>;
export declare function applyEngineTranslations(namespace: TranslateNamespace, engineTranslations: TranslateEngineTranslateResult): void;