"use strict"; const {contextBridge, ipcRenderer} = require("electron"); contextBridge.exposeInMainWorld("api", { openFile : () => ipcRenderer.invoke("WindowManager::openFile").then(response => alert(JSON.stringify(response))) });