UNPKG

ix

Version:

The Interactive Extensions for JavaScript

11 lines (10 loc) 370 B
import { AsyncIterableX } from '../../asynciterable/asynciterablex'; /** * @ignore */ export declare function doWhileProto<TSource>(this: AsyncIterableX<TSource>, condition: () => boolean | Promise<boolean>): AsyncIterableX<TSource>; declare module '../../asynciterable/asynciterablex' { interface AsyncIterableX<T> { doWhile: typeof doWhileProto; } }