electron/lib/browser/ipc-main-internal.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
255 B
TypeScript
Raw Normal View History

import { IpcMainImpl } from '@electron/internal/browser/ipc-main-impl';
2016-01-12 02:40:23 +00:00
export const ipcMainInternal = new IpcMainImpl() as ElectronInternal.IpcMainInternal;
// Do not throw exception when channel name is "error".
ipcMainInternal.on('error', () => {});