@squidcloud/backend
    Preparing search index...

    Interface LimiterOptions

    Options for rate and quota limiting backend functions.

    This mirrors the type in Kotlin. It is not the type the developer defines in their code, which is LimiterConfig.

    interface LimiterOptions {
        quotaLimit?: QuotaLimitOptions[];
        rateLimit?: RateLimitOptions[];
    }
    Index

    Properties

    quotaLimit?: QuotaLimitOptions[]

    Array of quota limit configurations, allowing different limits at different scopes.

    rateLimit?: RateLimitOptions[]

    Array of rate limit configurations, allowing different limits at different scopes.