9 lines
232 B
TypeScript
Raw Normal View History

2025-04-19 15:38:48 +08:00
import { Wordlist } from '../utils/wordlist';
declare class LangIt extends Wordlist {
constructor();
getWord(index: number): string;
getWordIndex(word: string): number;
}
declare const langIt: LangIt;
export { langIt };