UNPKG

ix

Version:

The Interactive Extensions for JavaScript

11 lines (10 loc) 334 B
import { IterableX } from '../../iterable/iterablex.js'; /** * @ignore */ export declare function intersectProto<T>(this: IterableX<T>, second: IterableX<T>, comparer?: (x: T, y: T) => boolean): IterableX<T>; declare module '../../iterable/iterablex' { interface IterableX<T> { intersect: typeof intersectProto; } }