UNPKG

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