Files
Desktop/ts/shims/bounceAppIcon.ts
Peter Thatcher d3a27a6442 Calling support
2020-07-30 13:08:47 -07:00

10 lines
242 B
TypeScript

import { ipcRenderer } from 'electron';
export function bounceAppIconStart(isCritical = false) {
ipcRenderer.send('bounce-app-icon-start', isCritical);
}
export function bounceAppIconStop() {
ipcRenderer.send('bounce-app-icon-stop');
}