summary refs log tree commit diff
path: root/src/util/config/types/subconfigurations/limits/MessageLimits.ts
blob: 51576b9018c249b20d3c1b2a135c19fec1c07030 (plain) (blame)
1
2
3
4
5
6
7
8
export class MessageLimits {
    maxCharacters: number = 1048576;
    maxTTSCharacters: number = 160;
    maxReactions: number = 2048;
    maxAttachmentSize: number = 1024 * 1024 * 1024;
    maxBulkDelete: number = 1000;
    maxEmbedDownloadSize: number = 1024 * 1024 * 5;
}