UNPKG

iter-tools-es

Version:
4 lines 302 B
import { Wrappable, IterableIterator } from '../../types/iterable'; declare function joinWith<W, T>(separator: W, source: Wrappable<Wrappable<T>>): IterableIterator<T | W>; declare function joinWith<W>(separator: W): <T>(source: Wrappable<Wrappable<T>>) => IterableIterator<T | W>; export { joinWith };