bunqueue v2.8 API referenceall versions · guide
bunqueue
    Preparing search index...

    Interface LoopDefinition

    Definition of a doUntil/doWhile loop (type-erased)

    interface LoopDefinition {
        condition: LoopCondition<any, any>;
        maxIterations: number;
        steps: StepDefinition[];
    }
    Index
    condition: LoopCondition<any, any>
    maxIterations: number