spawn-ts API reference - v0.6.0
    Preparing search index...

    Interface RetryConfig

    Retry policy for one job's launch. Mirrors pkg/queue.RetryConfig (subset).

    interface RetryConfig {
        backoff?: "fixed" | "exponential";
        baseDelay?: string;
        maxAttempts: number;
        maxDelay?: string;
    }
    Index
    backoff?: "fixed" | "exponential"

    "fixed" | "exponential" — validated but backoff shaping is coarse here.

    baseDelay?: string
    maxAttempts: number
    maxDelay?: string