mirror of
https://github.com/rhysd/Mstdn.git
synced 2024-11-28 20:24:10 +01:00
12 lines
317 B
TypeScript
12 lines
317 B
TypeScript
import log from './log';
|
|
import r from './require';
|
|
const electron = r('electron');
|
|
const ipc = electron.ipcRenderer;
|
|
|
|
export function on(channel: IpcChannel, callback: Function) {
|
|
ipc.on(channel, (...args: any[]) => {
|
|
log.debug('IPC: Received from:', channel, args);
|
|
callback(...args);
|
|
});
|
|
}
|