jsii-release
Version:
Release jsii modules to multiple package managers
13 lines (12 loc) • 394 B
TypeScript
/**
* Routines for corking stdout and stderr
*/
import * as stream from 'stream';
export declare class MemoryStream extends stream.Writable {
private parts;
_write(chunk: Buffer, _encoding: string, callback: (error?: Error | null) => void): void;
buffer(): Buffer<ArrayBuffer>;
clear(): void;
flushTo(strm: NodeJS.WritableStream): Promise<void>;
toString(): string;
}