@squidcloud/backend
    Preparing search index...

    Interface RateLimitOptions

    Options for rate limiting.

    interface RateLimitOptions {
        scope?: LimiterScope;
        value: number;
    }
    Index

    Properties

    Properties

    scope?: LimiterScope

    Specifies the scope of the rate limit, such as per user, IP, or global.

    value: number

    Number of executions permitted per second, allowing bursts up to 3x this limit.