I have a response where I get back a readstream from a fetch call: const reader = res.response.body!.getReader(); How can I use this with a chain? I tried converting it a few times but failed always...
I have a response where I get back a readstream from a fetch call:
const reader = res.response.body!.getReader();
How can I use this with a chain? I tried converting it a few times but failed always...