New option for control over update downloads

This commit is contained in:
Josh Perez
2021-08-19 18:56:29 -04:00
committed by GitHub
parent 80c1ad6ee3
commit e9308bbafb
49 changed files with 1230 additions and 803 deletions

View File

@@ -3,9 +3,11 @@
/* eslint-disable camelcase */
export enum Dialogs {
None,
Update,
Cannot_Update,
MacOS_Read_Only,
export enum DialogType {
None = 'None',
Update = 'Update',
Cannot_Update = 'Cannot_Update',
MacOS_Read_Only = 'MacOS_Read_Only',
DownloadReady = 'DownloadReady',
Downloading = 'Downloading',
}