UNPKG

compile-run

Version:

You can execute programs in different languages using this package

8 lines (7 loc) 231 B
/// <reference types="node" /> import { Readable } from 'stream'; /** * Converts the stream data to string * @param stream Stream to be converted */ export declare function streamDataToString(stream: Readable): Promise<string>;