UNPKG

iter-tools-es

Version:
4 lines 357 B
import { Wrappable as SyncWrappable, Wrappable, IterableIterator } from '../../types/iterable'; declare function joinWithSeq<W, T>(seq: SyncWrappable<W>, source: Wrappable<Wrappable<T>>): IterableIterator<T | W>; declare function joinWithSeq<W>(seq: SyncWrappable<W>): <T>(source: Wrappable<Wrappable<T>>) => IterableIterator<T | W>; export { joinWithSeq };