20 lines
535 B
TypeScript
20 lines
535 B
TypeScript
// Selectively expose node integration, since all node integrations are
|
|
// disabled by default for security purposes.
|
|
import { ipcRenderer, shell } from 'electron';
|
|
import { ElectronBridgeFunctions } from '../shared/electronBridge';
|
|
const win = window as any;
|
|
|
|
const functions: ElectronBridgeFunctions = {
|
|
addListener(event, cb) {
|
|
ipcRenderer.on(event, cb);
|
|
},
|
|
sendEvent(event, data) {
|
|
ipcRenderer.send(event, data);
|
|
},
|
|
openInBrowser(url) {
|
|
return shell.openExternal(url);
|
|
}
|
|
};
|
|
|
|
win.electronBridge = functions;
|