wordle-shell
Version:
A Wordle for the command line
17 lines (16 loc) • 367 B
TypeScript
import { Langs } from "./WordPicker";
declare class Game {
private wordle;
private max_tries;
private current_try;
private guesses;
constructor(lang: Langs);
run(): void;
private prompt;
private promptGuesses;
private promptSuccess;
private promptFailure;
private pickColor;
private promptGuess;
}
export default Game;