UNPKG

stdio

Version:

Standard input/output manager for Node.js

10 lines (9 loc) 231 B
/// <reference types="node" /> import { Readable } from 'stream'; declare class ReadableString extends Readable { private str; private sent; constructor(str: string); _read(): void; } export default ReadableString;