wordle-shell
Version:
A Wordle for the command line
16 lines (15 loc) • 343 B
TypeScript
export declare enum Langs {
ptBr = "pt-br",
enUs = "en-us"
}
declare class WordPicker {
private word;
private words;
constructor(lang: Langs);
static getWordList(lang: Langs): string[];
getWordList(): string[];
getWord(): string;
private generateIndex;
private static seed;
}
export default WordPicker;