@bonginkan/maria
Version:
MARIA OS v5.9.5 – Self-Evolving Organizational Intelligence OS | Speed Improvement Phase 3: LLM Optimization + Command Refactoring | Performance Measurement + Run Evidence System | Zero ESLint/TypeScript Errors | 人とAIが役割を持ち、学び、進化し続けるための仕事のOS | GraphRAG ×
20 lines (19 loc) • 705 B
TypeScript
export interface CommandTranslation {
command: string;
name: Record<string, string>;
description: Record<string, string>;
keywords: Record<string, string[]>;
examples: Record<string, string[]>;
}
export declare class MultilingualDictionary {
private dictionary;
private initialized;
constructor();
initialize(): Promise<void>;
getTranslation(_command: string, _language?: string): CommandTranslation | null;
getExplanation(_command: string, language?: string): string;
getKeywords(_command: string, language?: string): string[];
getExamples(_command: string, language?: string): string[];
getAllCommands(): string[];
private loadTranslations;
}