claude-flow
Version:
Enterprise-grade AI agent orchestration with ruv-swarm integration (Alpha Release)
13 lines (12 loc) • 371 B
TypeScript
import { IBackoff, IBackoffFactory } from './Backoff.js';
export declare class IterableBackoff implements IBackoffFactory<unknown> {
private readonly durations;
/**
* Backoff that returns a number from an iterable.
*/
constructor(durations: ReadonlyArray<number>);
/**
* @inheritdoc
*/
constructor(_context: unknown): IBackoff<unknown>;
}