2019-02-14 22:29:20 +00:00
|
|
|
import { EventEmitter } from 'events'
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-12-01 22:43:30 +00:00
|
|
|
const emitter = new EventEmitter()
|
2016-07-24 12:08:25 +00:00
|
|
|
|
|
|
|
// Do not throw exception when channel name is "error".
|
2016-12-01 22:43:30 +00:00
|
|
|
emitter.on('error', () => {})
|
|
|
|
|
2019-02-19 09:24:19 +00:00
|
|
|
export const ipcMainInternal = emitter as ElectronInternal.IpcMainInternal
|