@vgerbot/async
    Preparing search index...

    Type Alias BackOffStrategy

    BackOffStrategy: "linear" | "exponential"

    Built-in backoff strategies for retry delays.

    • 'linear': delay increases linearly with each attempt (baseDelay * attempt)
    • 'exponential': delay doubles with each attempt (baseDelay * 2^attempt)