makes ReadableStream the same as stream.ReadableStream by applying the pipe change

from commit d0139df89d
This commit is contained in:
Cameron Taggart
2013-11-24 15:36:02 -06:00
parent c2caad7bf1
commit ee21e8494b
+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 {