UNPKG

317 BTypeScriptView Raw
1import { IterableX } from '../../iterable/iterablex';
2/**
3 * @ignore
4 */
5export declare function unionProto<T>(this: IterableX<T>, right: Iterable<T>, comparer?: (x: T, y: T) => boolean): IterableX<T>;
6declare module '../../iterable/iterablex' {
7 interface IterableX<T> {
8 union: typeof unionProto;
9 }
10}