signal-desktop/ts/shims/updateIpc.ts

13 lines
285 B
TypeScript
Raw Normal View History

2020-10-30 20:34:04 +00:00
// Copyright 2020 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import { ipcRenderer } from 'electron';
2020-09-16 19:31:05 +00:00
export function startUpdate(): void {
ipcRenderer.send('start-update');
}
2020-09-16 19:31:05 +00:00
export function ackRender(): void {
ipcRenderer.send('show-update-dialog-ack');
}