1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-24 15:40:21 +01:00
upscayl/main/preload.js
2022-08-17 14:48:49 +05:30

18 lines
585 B
JavaScript

const { ipcRenderer, contextBridge } = require("electron");
// 'ipcRenderer' will be available in index.js with the method 'window.electron'
contextBridge.exposeInMainWorld("electron", {
send: (command, payload) => ipcRenderer.send(command, payload),
on: (command, func) =>
ipcRenderer.on(command, (event, args) => {
func(event, args);
}),
invoke: (command, payload) => ipcRenderer.invoke(command, payload),
startListen: (func) => {
ipcRenderer.addListener("stdout",func)
},
stopListen: (func) => {
ipcRenderer.removeListener("stdout",func)
},
});