UNPKG

195 BTypeScriptView Raw
1import { AsyncIterableX } from './asynciterablex';
2export declare function doWhile<TSource>(source: AsyncIterable<TSource>, condition: () => boolean | Promise<boolean>): AsyncIterableX<TSource>;