Files
zulip-desktop/app/renderer/js/notification/helpers.ts
2022-02-03 22:55:15 -08:00

8 lines
248 B
TypeScript

import {ipcRenderer} from "../typed-ipc-renderer";
// This function will focus the server that sent
// the notification. Main function implemented in main.js
export function focusCurrentServer(): void {
ipcRenderer.send("focus-this-webview");
}