UNPKG

ix

Version:

The Interactive Extensions for JavaScript

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