1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-28 09:20:52 +01:00
upscayl/electron/utils/show-notification.ts

10 lines
206 B
TypeScript

import { Notification } from "electron/main";
export default function showNotification(title: string, body: string) {
new Notification({
title,
body,
closeButtonText: "Close",
}).show();
}