Rocket.Chat.ReactNative/app/lib/constants/mediaAutoDownload.ts

10 lines
316 B
TypeScript
Raw Normal View History

export enum MediaDownloadOption {
NEVER = 'never',
WIFI_MOBILE_DATA = 'wifi_mobile_data',
WIFI = 'wifi'
}
export const IMAGES_PREFERENCE_DOWNLOAD = 'imagesPreferenceDownload';
export const VIDEO_PREFERENCE_DOWNLOAD = 'videoPreferenceDownload';
export const AUDIO_PREFERENCE_DOWNLOAD = 'audioPreferenceDownload';