8 lines
235 B
TypeScript
8 lines
235 B
TypeScript
|
|
// Preload for the renderer process.
|
||
|
|
// All the Node.js APIs are available in the preload process.
|
||
|
|
// It has the same sandbox as a Chrome extension.
|
||
|
|
|
||
|
|
window.addEventListener('DOMContentLoaded', () => {
|
||
|
|
// Expose APIs if needed
|
||
|
|
});
|