UNPKG

ix

Version:

The Interactive Extensions for JavaScript

11 lines (10 loc) 275 B
import { IterableX } from '../../iterable/iterablex.js'; /** * @ignore */ export declare function pairwiseProto<T>(this: IterableX<T>): IterableX<T[]>; declare module '../../iterable/iterablex' { interface IterableX<T> { pairwise: typeof pairwiseProto; } }