UNPKG

ix

Version:

The Interactive Extensions for JavaScript

11 lines (10 loc) 286 B
import { IterableX } from '../../iterable/iterablex.js'; /** * @ignore */ export declare function pluckProto<T, R>(this: IterableX<T>, ...args: string[]): IterableX<R>; declare module '../../iterable/iterablex' { interface IterableX<T> { pluck: typeof pluckProto; } }