Files
feishin/packages/preload/src/ipc.ts
T
2022-12-09 03:09:55 -08:00

10 lines
184 B
TypeScript

import { ipcRenderer } from 'electron';
const removeAllListeners = (channel: string) => {
ipcRenderer.removeAllListeners(channel);
};
export const ipc = {
removeAllListeners,
};