mirror of
https://github.com/Qortal/qortal-ui.git
synced 2025-02-11 17:55:51 +00:00
7 lines
281 B
JavaScript
7 lines
281 B
JavaScript
const { contextBridge, ipcRenderer } = require('electron')
|
|
|
|
contextBridge.exposeInMainWorld('electronAPI', {
|
|
setStartCore: () => ipcRenderer.send('set-start-core'),
|
|
checkForUpdate: () => ipcRenderer.send('check-for-update'),
|
|
showMyMenu: () => ipcRenderer.send('show-my-menu')
|
|
}) |