Skip to content

Commit dc359de

Browse files
authored
fix: Added missing event-update-not-available in UpdaterEvents (#5923)
1 parent 096e109 commit dc359de

File tree

1 file changed

+1
-1
lines changed
  • packages/electron-updater/src

1 file changed

+1
-1
lines changed

packages/electron-updater/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export interface UpdateCheckResult {
5454
readonly versionInfo: UpdateInfo
5555
}
5656

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

5959
export const DOWNLOAD_PROGRESS: UpdaterEvents = "download-progress"
6060
export const UPDATE_DOWNLOADED: UpdaterEvents = "update-downloaded"

0 commit comments

Comments
 (0)