hyper/lib/utils/ipc.ts

6 lines
175 B
TypeScript
Raw Normal View History

2023-07-22 05:57:32 -08:00
import {ipcRenderer as _ipc} from 'electron';
2023-07-25 09:30:19 -08:00
2023-07-25 01:39:51 -08:00
import type {IpcRendererWithCommands} from '../../typings/common';
2023-07-22 05:57:32 -08:00
export const ipcRenderer = _ipc as IpcRendererWithCommands;