UNPKG

ix

Version:

The Interactive Extensions for JavaScript

11 lines (10 loc) 320 B
import { AsyncIterableX } from '../../asynciterable/asynciterablex.js'; /** * @ignore */ export declare function toSetProto<TSource>(this: AsyncIterableX<TSource>): Promise<Set<TSource>>; declare module '../../asynciterable/asynciterablex' { interface AsyncIterableX<T> { toSet: typeof toSetProto; } }