Merge pull request #1327 from ctaggart/nodejsBugStream

node bug fix, make ReadableStream the same as stream.ReadableStream
This commit is contained in:
Basarat Ali Syed
2013-11-24 14:24:04 -08:00
+1 -1
View File
@@ -95,7 +95,7 @@ interface ReadableStream extends EventEmitter {
pause(): void;
resume(): void;
destroy(): void;
pipe(destination: WritableStream, options?: { end?: boolean; }): void;
pipe<T extends WritableStream>(destination: T, options?: { end?: boolean; }): T;
}
interface NodeProcess extends EventEmitter {