@cspell/cspell-pipe
Version:
Library to make working with Iterators/AsyncIterators easier.
4 lines • 342 B
TypeScript
export declare function opFlattenAsync<T>(): (iter: AsyncIterable<AsyncIterable<T> | Iterable<T>>) => AsyncIterable<T>;
export declare function opFlattenSync<T>(): (iter: Iterable<Iterable<T>>) => Iterable<T>;
export declare const opFlatten: <T>() => import("../internalTypes.js").PipeFn<Iterable<T>, T>;
//# sourceMappingURL=flatten.d.ts.map