UNPKG

ix

Version:

The Interactive Extensions for JavaScript

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