UNPKG

@reactivex/ix-esnext-esm

Version:

The Interactive Extensions for JavaScript

9 lines (8 loc) 382 B
import { IterableX } from '../iterablex'; import { MonoTypeOperatorFunction } from '../../interfaces'; export declare class IgnoreElementsIterable<TSource> extends IterableX<TSource> { private _source; constructor(source: Iterable<TSource>); [Symbol.iterator](): Iterator<TSource>; } export declare function ignoreElements<TSource>(): MonoTypeOperatorFunction<TSource>;