UNPKG

claude-flow

Version:

Enterprise-grade AI agent orchestration with ruv-swarm integration (Alpha Release)

13 lines (12 loc) 331 B
import { IBackoff, IBackoffFactory } from './Backoff.js'; export declare class ConstantBackoff implements IBackoffFactory<unknown> { private readonly interval; /** * Backoff that returns a constant interval. */ constructor(interval: number); /** * @inheritdoc */ constructor(): IBackoff<unknown>; }