UNPKG

273 BTypeScriptView Raw
1import { IterableX } from '../../iterable/iterablex';
2/**
3 * @ignore
4 */
5export declare function toSetProto<TSource>(this: IterableX<TSource>): Set<TSource>;
6declare module '../../iterable/iterablex' {
7 interface IterableX<T> {
8 toSet: typeof toSetProto;
9 }
10}