plainfp - v0.1.0
    Preparing search index...

    Type Alias RetryOptions

    Configuration for retry.

    • times: total number of attempts (>= 1). A value of 1 means no retry.
    • delayMs: base delay between attempts in milliseconds. Defaults to 0.
    • backoff: "linear" multiplies delayMs by attempt count; "exponential" doubles on each attempt. Defaults to "linear".
    type RetryOptions = {
        backoff?: "linear" | "exponential";
        delayMs?: number;
        times: number;
    }
    Index

    Properties

    backoff?: "linear" | "exponential"
    delayMs?: number
    times: number