UNPKG

streams

Version:

A lazy streams library for functional composition in JavaScript.

7 lines (6 loc) 232 B
declare module "../../async-iterator-stream" { interface AsyncIteratorStream<T> { traverseDepth(getChildren: (_: T) => AsyncIterable<T> | AsyncIterator<T, unknown, undefined>): AsyncIteratorStream<T>; } } export {};