summary refs log tree commit diff
path: root/src/util/config/types/subconfigurations/limits/GuildLimits.ts
blob: c5bc7884ec7cae49ce483b077b2b35aa29be53a7 (plain) (blame)
1
2
3
4
5
6
7
export class GuildLimits {
    maxRoles: number = 1000;
    maxEmojis: number = 2000;
    maxMembers: number = 25000000;
    maxChannels: number = 65535;
    maxChannelsInCategory: number = 65535;
}