ipc-main-internal.ts 237 B

12345678
  1. import { EventEmitter } from 'events'
  2. const emitter = new EventEmitter()
  3. // Do not throw exception when channel name is "error".
  4. emitter.on('error', () => {})
  5. export const ipcMainInternal = emitter as ElectronInternal.IpcMainInternal