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

export class RateLimits {
	disabled: boolean = true;
	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();
}