summary refs log tree commit diff
path: root/util/src/config/types/subconfigurations/limits/ratelimits/Route.ts
blob: 3012a8a8d7deca9ea2bd4e1396c306cc365f0127 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { AuthRateLimit } from ".";
import { RateLimitOptions } from "./RateLimitOptions";

export class RouteRateLimit {
    guild: RateLimitOptions = {
        count: 5,
        window: 5
    };
    webhook: RateLimitOptions = {
        count: 10,
        window: 5
    };
    channel: RateLimitOptions = {
        count: 10,
        window: 5
    };
    auth: AuthRateLimit;
    // TODO: rate limit configuration for all routes
}