mirror of
https://github.com/upscayl/upscayl.git
synced 2024-11-28 09:20:52 +01:00
10 lines
206 B
TypeScript
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();
|
||
|
}
|