UNPKG

congress-dot-gov

Version:
11 lines (9 loc) 261 B
interface RateLimitInfo { limit: number; remaining: number; } interface RateLimiter { waitForNextRequest: () => Promise<void>; updateRateLimitInfo: (rateLimitInfo: RateLimitInfo) => void; } export type { RateLimitInfo as R, RateLimiter as a };