Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upElectron.ClientRequest should be typed as a WritableStream #22730
Comments
Also ReadableStream |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In order to allow typescript usage of
stream.pipe(request)
(which works) theClientRequest
typescript definition needs to either be compatible with orextend
Writable.Extending probably makes the most sense if we can make that work as that's what we're actually doing in the code.