UNPKG

@reactivex/ix-es2015-cjs

Version:

The Interactive Extensions for JavaScript

11 lines (10 loc) 296 B
import { IterableX } from '../../iterable/iterablex.js'; /** * @ignore */ export declare function doWhileProto<T>(this: IterableX<T>, condition: () => boolean): IterableX<T>; declare module '../../iterable/iterablex' { interface IterableX<T> { doWhile: typeof doWhileProto; } }