We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fb0aeb commit be8e18bCopy full SHA for be8e18b
src/_shims/node-runtime.ts
@@ -13,7 +13,9 @@ import { Readable } from 'node:stream';
13
import { type RequestOptions } from '../core';
14
import { MultipartBody } from './MultipartBody';
15
import { type Shims } from './registry';
16
-import { ReadableStream } from 'web-streams-polyfill';
+
17
+// @ts-ignore (this package does not have proper export maps for this export)
18
+import { ReadableStream } from 'web-streams-polyfill/dist/ponyfill.es2018.js';
19
20
type FileFromPathOptions = Omit<FilePropertyBag, 'lastModified'>;
21
0 commit comments