I'm using electron-react-boilerplate v4.0.0 I've exposed this electron api from preload.js to use in renderer process. preload.js
The problem comes when trying use "window.electron.ipcRenderer.printTicket()" inside a react component.
I have the Error: "window.electron does not exist on type 'Window & typeof globalThis'".
@Daniel,
Try this:-
Edit your index.tsx from something like this:-
to something like this:-
Now you can use window.electron anywhere in the renderer. This fixed the problem for me. You could also add this in the App.js file.
Although I have not tested it, you can do something like this too:-
preload.js
index.tsx