electron-event-flux
Version:
Redux store which synchronizes between instances in multiple process
8 lines • 312 B
TypeScript
export default interface IMainClientCallbacks {
addWin(clientId: string): void;
deleteWin(clientId: string): void;
getStores(clientId: string): any;
getInitStates(clientId: string): any;
handleRendererMessage(action: string): Promise<any>;
}
//# sourceMappingURL=IMainClientCallbacks.d.ts.map