UNPKG

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