(mainWindow: Electron.BrowserWindow)
| 14 | private currentAssemblyTarget: string | null = null |
| 15 | |
| 16 | public init(mainWindow: Electron.BrowserWindow): void { |
| 17 | this.mainWindow = mainWindow |
| 18 | this.setupIPC() |
| 19 | this.setupWindowEvents() |
| 20 | } |
| 21 | |
| 22 | private setupIPC(): void { |
| 23 | ipcMain.on('hide-window', () => this.hideWindow()) |
nothing calls this directly
no test coverage detected