10 lines
414 B
TypeScript
10 lines
414 B
TypeScript
// SPDX-FileCopyrightText: 2024 John Livingston <https://www.john-livingston.fr/>
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
export const maxSize: number = 30 * 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 = 200
|