peertube-plugin-livechat/shared/lib/emojis.ts

6 lines
286 B
TypeScript
Raw Normal View History

2024-06-06 09:36:07 +00:00
export const maxSize: number = 20 * 1024
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