Type Alias RateLimiterAllowedState

RateLimiterAllowedState: {
    limit: number;
    reaminingAttemps: number;
    type: typeof RATE_LIMITER_STATE["ALLOWED"];
    usedAttempts: number;
}

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