stream-utils.d.ts 427 B

12345678
  1. /**
  2. * Most browsers don't yet have async iterable support for ReadableStream,
  3. * and Node has a very different way of reading bytes from its "ReadableStream".
  4. *
  5. * This polyfill was pulled from https://github.com/MattiasBuelens/web-streams-polyfill/pull/122#issuecomment-1627354490
  6. */
  7. export declare function ReadableStreamToAsyncIterable<T>(stream: any): AsyncIterableIterator<T>;
  8. //# sourceMappingURL=stream-utils.d.ts.map