Proton Drive CLI API Documentation - v0.1.2
    Preparing search index...

    Interface RetryConfig

    Configuration for retry behavior

    interface RetryConfig {
        backoffFactor: number;
        initialDelayMs: number;
        maxAttempts: number;
        maxDelayMs: number;
        retryableErrors: Set<string>;
    }
    Index

    Properties

    backoffFactor: number

    Backoff multiplier (delay multiplied by this each retry)

    initialDelayMs: number

    Initial delay in milliseconds before first retry

    maxAttempts: number

    Maximum number of retry attempts (including initial attempt)

    maxDelayMs: number

    Maximum delay in milliseconds (cap for exponential backoff)

    retryableErrors: Set<string>

    Set of error names that should be retried