electron-event-flux
Version:
Redux store which synchronizes between instances in multiple process
14 lines • 547 B
TypeScript
import StoreBase from './MainStoreBase';
export declare class WinPackStore extends StoreBase {
destroy(): void;
}
export default class MultiWinManagerStore extends StoreBase {
winPackMapStore: any;
constructor();
addWin(winId: string): void;
deleteWin(winId: string): void;
getClienIds(): any;
onDidAddWin(callback: (clientId: string) => void): import("event-kit").Disposable;
onDidRemoveWin(callback: (clientId: string) => void): import("event-kit").Disposable;
}
//# sourceMappingURL=MultiWinManagerStore.d.ts.map