mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-08 04:50:12 +02:00
10 lines
184 B
TypeScript
10 lines
184 B
TypeScript
import { ipcRenderer } from 'electron';
|
|
|
|
const removeAllListeners = (channel: string) => {
|
|
ipcRenderer.removeAllListeners(channel);
|
|
};
|
|
|
|
export const ipc = {
|
|
removeAllListeners,
|
|
};
|