UNPKG

@hp4k1h5/terminordle

Version:

> multiplayer [wordle](https://www.powerlanguage.co.uk/wordle/) clone in your terminal

14 lines (13 loc) 395 B
import { Visibility } from '../lib/structs'; export { names } from './data/names'; export { Log, Line } from './log'; declare type Words = { [key: string]: boolean; }; export declare const words: Words; export declare const alphabet: string[]; declare type Viz = { [key: string]: Visibility; }; export declare const letters: Viz; export declare function getRand(from: string[]): string;