ente/src/api/common.ts
2022-08-25 11:16:07 +05:30

9 lines
286 B
TypeScript

export const sendNotification = (content: string) => {
ipcRenderer.send('send-notification', content);
};
export const showOnTray = (content: string) => {
ipcRenderer.send('update-tray', content);
};
export const reloadWindow = () => {
ipcRenderer.send('reload-window');
};