2020-10-30 15:34:04 -05:00
|
|
|
// Copyright 2020 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-06-04 11:16:19 -07:00
|
|
|
import { ipcRenderer } from 'electron';
|
|
|
|
|
2020-09-16 12:31:05 -07:00
|
|
|
export function bounceAppIconStart(isCritical = false): void {
|
2020-06-04 11:16:19 -07:00
|
|
|
ipcRenderer.send('bounce-app-icon-start', isCritical);
|
|
|
|
}
|
|
|
|
|
2020-09-16 12:31:05 -07:00
|
|
|
export function bounceAppIconStop(): void {
|
2020-06-04 11:16:19 -07:00
|
|
|
ipcRenderer.send('bounce-app-icon-stop');
|
|
|
|
}
|