Type Alias RateLimiterBlockedState

RateLimiterBlockedState: {
    exceedAttempts: number;
    limit: number;
    resetTime: ITimeSpan;
    totalAttempts: number;
    type: typeof RATE_LIMITER_STATE["BLOCKED"];
}

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