UNPKG

aifordiscord-api

Version:

An advanced npm package for Discord bots providing AI-enhanced random content, memes, jokes, and utilities with comprehensive documentation.

13 lines 378 B
/** * Rate limiting utility */ export declare class RateLimiter { private limits; private maxRequests; private windowMs; constructor(maxRequests?: number, windowMs?: number); isAllowed(identifier: string): boolean; getRemainingRequests(identifier: string): number; getResetTime(identifier: string): number; } //# sourceMappingURL=ratelimit.d.ts.map