Interface RateLimitBannerThresholds

Banner threshold configuration for rate limit warnings.

interface RateLimitBannerThresholds {
    warningThreshold: number;
    criticalThreshold: number;
}

Properties

warningThreshold: number

Show warning banner when remaining requests drop below this percentage.

Default

25
criticalThreshold: number

Show critical banner when remaining requests drop below this percentage.

Default

10