mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-23 09:58:12 +01:00
10 lines
190 B
TypeScript
10 lines
190 B
TypeScript
import { ipcRenderer } from 'electron';
|
|
|
|
export function startUpdate() {
|
|
ipcRenderer.send('start-update');
|
|
}
|
|
|
|
export function ackRender() {
|
|
ipcRenderer.send('show-update-dialog-ack');
|
|
}
|