import { GuessResult } from "../game/game.ts"; import { Awaitable } from "../utils.ts"; export interface Guessing { guess(try_: (guess: string, known: string) => Awaitable): Promise; }