UNPKG

ix

Version:

The Interactive Extensions for JavaScript

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