UNPKG

370 BTypeScriptView Raw
1import { AsyncIterableX } from '../../asynciterable/asynciterablex';
2/**
3 * @ignore
4 */
5export declare function doWhileProto<TSource>(this: AsyncIterableX<TSource>, condition: () => boolean | Promise<boolean>): AsyncIterableX<TSource>;
6declare module '../../asynciterable/asynciterablex' {
7 interface AsyncIterableX<T> {
8 doWhile: typeof doWhileProto;
9 }
10}