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

7 lines 336 B
/** pipe upstream through a transform stream */ export declare const throughs: { <T>(stream?: TransformStream<T, T>): TransformStream<T, T>; <T, R>(stream: TransformStream<T, R>): TransformStream<T, R>; <T, R>(fn: (s: ReadableStream<T>) => ReadableStream<R>): TransformStream<T, R>; }; //# sourceMappingURL=throughs.d.ts.map