MCPcopy Index your code
hub / github.com/idosal/git-mcp / RateLimitInfo

Interface RateLimitInfo

src/api/utils/githubClient.ts:55–59  ·  view source on GitHub ↗

* Rate limiting state tracking

Source from the content-addressed store, hash-verified

53 * Rate limiting state tracking
54 */
55interface RateLimitInfo {
56 remaining: number;
57 resetTime: Date | null;
58 limit: number;
59}
60
61// Store rate limit information
62let apiRateLimit: RateLimitInfo = {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected