UNPKG

@apollo/client

Version:

A fully-featured caching GraphQL client.

7 lines 321 B
/** * Original source: * https://github.com/kmalakoff/response-iterator/blob/master/src/iterators/nodeStream.ts */ import type { Readable as NodeReadableStream } from "stream"; export default function nodeStreamIterator<T>(stream: NodeReadableStream): AsyncIterableIterator<T>; //# sourceMappingURL=nodeStream.d.ts.map