import { IterableX } from './iterablex'; export declare class OnErrorResumeNextIterable extends IterableX { private _source; constructor(source: Iterable>); [Symbol.iterator](): Generator; } /** * Concatenates all of the specified iterable sequences, even if the previous iterable sequence terminated exceptionally. * * @export * @template T The type of the elements in the source sequences. * @param {...Iterable[]} args iterable sequences to concatenate. * @returns {IterableX} An iterable sequence that concatenates the source sequences, even if a sequence terminates exceptionally. */ export declare function onErrorResumeNext(...source: Iterable[]): IterableX;