UNPKG

@el3um4s/ipc-for-electron

Version:

A package to simplify the communication between renderer and node js in Electron applications

9 lines (8 loc) 196 B
export interface APIChannels { nameAPI: string; validSendChannel: SendChannels; validReceiveChannel: string[]; } export interface SendChannels { [key: string]: Function; }