* Rate limiting state tracking
| 53 | * Rate limiting state tracking |
| 54 | */ |
| 55 | interface RateLimitInfo { |
| 56 | remaining: number; |
| 57 | resetTime: Date | null; |
| 58 | limit: number; |
| 59 | } |
| 60 | |
| 61 | // Store rate limit information |
| 62 | let apiRateLimit: RateLimitInfo = { |
nothing calls this directly
no outgoing calls
no test coverage detected