@jiminp/tooltool
    Preparing search index...

    Interface RetryInfo

    Information passed to retry-related callbacks.

    interface RetryInfo {
        attempts: number;
        error?: unknown;
    }
    Index

    Properties

    Properties

    attempts: number

    Number of failed attempts so far.

    error?: unknown

    The error from the most recent failed attempt.