Skip to content

Commit

Permalink
fix: Added missing event-update-not-available in UpdaterEvents (#5923)
Browse files Browse the repository at this point in the history
  • Loading branch information
dkarski committed Jun 1, 2021
1 parent 096e109 commit dc359de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/electron-updater/src/main.ts
Expand Up @@ -54,7 +54,7 @@ export interface UpdateCheckResult {
readonly versionInfo: UpdateInfo
}

export type UpdaterEvents = "login" | "checking-for-update" | "update-available" | "update-cancelled" | "download-progress" | "update-downloaded" | "error"
export type UpdaterEvents = "login" | "checking-for-update" | "update-available" | "update-not-available" | "update-cancelled" | "download-progress" | "update-downloaded" | "error"

export const DOWNLOAD_PROGRESS: UpdaterEvents = "download-progress"
export const UPDATE_DOWNLOADED: UpdaterEvents = "update-downloaded"
Expand Down

0 comments on commit dc359de

Please sign in to comment.