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

export class RateLimits {
	enabled: boolean = false;
	ip: Omit<RateLimitOptions, "bot_count"> = {
		count: 500,
		window: 5
	};
	global: RateLimitOptions = {
		count: 250,
		window: 5
	};
	error: RateLimitOptions = {
		count: 10,
		window: 5
	};
	routes: RouteRateLimit = new RouteRateLimit();
}