Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

preload.js 430B

123456789
  1. // Secure bridge between the sandboxed renderer and the main process.
  2. const { contextBridge, ipcRenderer } = require('electron');
  3. contextBridge.exposeInMainWorld('agent', {
  4. onConfig: (cb) => ipcRenderer.on('config', (_e, cfg) => cb(cfg)),
  5. injectInput: (evt) => ipcRenderer.send('inject-input', evt),
  6. sessionEnded: () => ipcRenderer.send('session-ended'),
  7. getPrimarySize: () => ipcRenderer.invoke('get-primary-size'),
  8. });