Type Alias SlidingWindowLimiterState

SlidingWindowLimiterState: Partial<Record<number, number>>

Defines the structure for tracking attempts in the rate limiter. The key is the timestamp of the window's start (e.g., 1700000000000). The value is the attempts for that window.

IMPORT_PATH: "@daiso-tech/core/rate-limiter/policies"