AniLink - v2.0.0
    Preparing search index...

    Interface RateLimitInfo

    Rate-limit accounting parsed from provider response headers.

    Populated from the x-ratelimit-* header family (AniList) or the X-RateLimit-* / Retry-After family used by REST providers such as MyAnimeList, whenever the upstream includes the required headers.

    interface RateLimitInfo {
        limit: number;
        remaining: number;
        reset: number;
    }
    Index
    limit: number

    The maximum number of requests allowed in the current window.

    remaining: number

    The number of requests remaining in the current window.

    reset: number

    The Unix epoch seconds at which the current window resets.