2
0
mirror of synced 2025-02-24 03:58:06 +00:00

9 lines
225 B
TypeScript
Raw Normal View History

2019-05-14 18:48:48 -04:00
import { Wordlist } from "./wordlist";
declare class LangIt extends Wordlist {
constructor();
getWord(index: number): string;
getWordIndex(word: string): number;
}
declare const langIt: LangIt;
export { langIt };