@hp4k1h5/terminordle
Version:
> multiplayer [wordle](https://www.powerlanguage.co.uk/wordle/) clone in your terminal
10 lines (9 loc) • 439 B
TypeScript
/// <reference types="node" />
import * as readline from 'readline';
import { WS } from '../lib/structs';
import './args';
export declare const _rl: () => readline.Interface;
export declare let rl: readline.Interface;
export declare function resetRl(cnx: WS): readline.Interface;
export declare function question(query: string, rl_?: readline.Interface): Promise<string>;
export declare function repl(cnx?: WS | undefined): Promise<void>;