UNPKG

ix

Version:

The Interactive Extensions for JavaScript

11 lines (10 loc) 288 B
import { IterableX } from '../../iterable/iterablex.js'; /** * @ignore */ export declare function skipLastProto<T>(this: IterableX<T>, count: number): IterableX<T>; declare module '../../iterable/iterablex' { interface IterableX<T> { skipLast: typeof skipLastProto; } }