* Get the stable ID for a window
(window: BrowserWindow)
| 73 | * Get the stable ID for a window |
| 74 | */ |
| 75 | getStableId(window: BrowserWindow): string { |
| 76 | return this.windowIdMap.get(window.id) ?? "main" |
| 77 | } |
| 78 | |
| 79 | /** |
| 80 | * Unregister a window |
no test coverage detected