UNPKG

fnglish-notebook

Version:

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

10 lines (9 loc) 307 B
import type { Config } from '../utils/types.js'; export declare class ConfigManager { private config; exists(): Promise<boolean>; load(): Promise<Config | null>; save(config: Config): Promise<void>; get(): Config | null; getEnglishLevelText(level: Config['englishLevel']): string; }