UNPKG

claude-conversation-manager

Version:

A CLI tool for managing Claude Code conversation history with parsing and i18n support

9 lines (8 loc) 293 B
export type Language = 'en' | 'zh'; export declare class I18n { private static language; static setLanguage(lang: Language): void; static getLanguage(): Language; static t(key: string, params?: Record<string, string | number>): string; static detectLanguage(): Language; }