import { AsyncIterableX } from './asynciterablex'; export declare class OnErrorResumeNextAsyncIterable extends AsyncIterableX { private _source; constructor(source: Iterable>); [Symbol.asyncIterator](signal?: AbortSignal): AsyncGenerator; } /** * Concatenates all of the specified async-iterable sequences, even if the previous async-iterable sequence terminated exceptionally. * * @export * @template T The type of the elements in the source sequences. * @param {...AsyncIterable[]} args Async-iterable sequences to concatenate. * @returns {AsyncIterableX} An async-iterable sequence that concatenates the source sequences, even if a sequence terminates exceptionally. */ export declare function onErrorResumeNext(...args: AsyncIterable[]): AsyncIterableX;