UNPKG

sflow

Version:

sflow is a powerful and highly-extensible library designed for processing and manipulating streams of data effortlessly. Inspired by the functional programming paradigm, it provides a rich set of utilities for transforming streams, including chunking, fil

10 lines 250 B
/** * Convert a readable stream to it's latest value * * the return object is dynamic updated */ export declare function toLatests<T>(r: ReadableStream<T>): { latest: Promise<T>; next: Promise<T>; }; //# sourceMappingURL=toLatest.d.ts.map