soundcloud-api-ts - v1.13.4
    Preparing search index...

    Interface RetryInfo

    Information passed to the onRetry callback on each retry attempt.

    interface RetryInfo {
        attempt: number;
        delayMs: number;
        reason: string;
        status?: number;
        url: string;
    }
    Index

    Properties

    attempt: number

    Which retry attempt this is (1-based)

    delayMs: number

    Delay in milliseconds before this retry fires

    reason: string

    Human-readable reason (e.g. "429 Too Many Requests")

    status?: number

    HTTP status that triggered the retry, if applicable

    url: string

    The URL that was requested