UNPKG

fnglish-notebook

Version:

A cross-platform CLI tool for English learning with translation, voice pronunciation, and Notion integration. Supports Windows, macOS, and Linux.

9 lines (8 loc) 387 B
import type { TranslationResult } from '../utils/types.js'; export declare class TencentTranslationService { private client; constructor(); translateText(text: string, from?: string, to?: string): Promise<TranslationResult>; translateImage(imageBase64: string, from?: string, to?: string): Promise<TranslationResult>; detectLanguage(text: string): Promise<string>; }