(mainWindow: BrowserWindow)
| 8 | private mainWindow: BrowserWindow | null = null; |
| 9 | |
| 10 | constructor(mainWindow: BrowserWindow) { |
| 11 | this.mainWindow = mainWindow; |
| 12 | this.setInitialPosition(); |
| 13 | } |
| 14 | |
| 15 | private setInitialPosition() { |
| 16 | this.mainWindow?.setPosition(this.cursorX, this.cursorY); |
nothing calls this directly
no test coverage detected