UNPKG

miter

Version:

A typescript web framework based on ExpressJs based loosely on SailsJs

11 lines (10 loc) 289 B
/// <reference types="node" /> import { ReadLine } from 'readline'; export interface ReadLineAsync { readline(): Promise<string>; getNative: () => ReadLine; pause: () => void; resume: () => void; emit: (line: string) => void; } export declare const cin: ReadLineAsync;