6 lines
286 B
TypeScript
Raw Normal View History

2024-06-06 15:03:12 +02:00
export const maxSize: number = 30 * 1024
2024-06-06 11:36:07 +02:00
export const allowedExtensions = ['png', 'jpg', 'jpeg', 'gif']
export const inputFileAccept = ['image/jpg', 'image/png', 'image/gif']
export const allowedMimeTypes = ['image/jpg', 'image/png', 'image/gif']
export const maxEmojisPerChannel = 100