2020-10-30 20:34:04 +00:00
|
|
|
// Copyright 2020 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-02-12 21:30:58 +00:00
|
|
|
import { ipcRenderer } from 'electron';
|
|
|
|
|
2022-03-04 19:59:47 +00:00
|
|
|
export function startUpdate(): Promise<void> {
|
|
|
|
return ipcRenderer.invoke('start-update');
|
2020-02-12 21:30:58 +00:00
|
|
|
}
|
2024-11-12 23:56:20 +00:00
|
|
|
|
|
|
|
export function forceUpdate(): Promise<void> {
|
|
|
|
return ipcRenderer.invoke('updater/force-update');
|
|
|
|
}
|