I'm using Bun and TypeScript so one of those might be the problem
function doStuff(webReadbleStream: ReadableStream) {
const nodeStream = new ReadableWebToNodeStream(webReadbleStream);
nodeStream.pipe(nodeTransform()) // Property 'pipe' does not exist on type 'ReadableWebToNodeStream'
.on('data', doMoreStuff);
}
I'm using Bun and TypeScript so one of those might be the problem