UNPKG

394 BTypeScriptView Raw
1import { AsyncIterableX } from '../../asynciterable/asynciterablex';
2/**
3 * @ignore
4 */
5export declare function intersectProto<T>(this: AsyncIterableX<T>, second: AsyncIterable<T>, comparer?: (x: T, y: T) => boolean | Promise<boolean>): AsyncIterableX<T>;
6declare module '../../asynciterable/asynciterablex' {
7 interface AsyncIterableX<T> {
8 intersect: typeof intersectProto;
9 }
10}