electron/lib/browser/api/ipc-main.ts
2020-03-20 13:28:31 -07:00

8 lines
221 B
TypeScript

import { IpcMainImpl } from '@electron/internal/browser/ipc-main-impl';
const ipcMain = new IpcMainImpl();
// Do not throw exception when channel name is "error".
ipcMain.on('error', () => {});
export default ipcMain;