Getting this typescript compilation error after the recent changes to this code. Looked at the recently merged PR and saw some discussion around something like this. Is there a workaround or something I should be doing here, or am I doing something wrong?
error TS2552: Cannot find name 'ReadableStream'. Did you mean 'WebReadableStream'?
12 export type AnyWebReadableStream<G> = WebReadableStream<G> | ReadableStream<G>;
~~~~~~~~~~~~~~
Found 1 error in node_modules/file-type/core.d.ts:12
Getting this typescript compilation error after the recent changes to this code. Looked at the recently merged PR and saw some discussion around something like this. Is there a workaround or something I should be doing here, or am I doing something wrong?