* Get all windows
()
| 115 | * Get all windows |
| 116 | */ |
| 117 | getAll(): BrowserWindow[] { |
| 118 | return Array.from(this.windows.values()).filter((w) => !w.isDestroyed()) |
| 119 | } |
| 120 | |
| 121 | /** |
| 122 | * Get the number of windows |
no outgoing calls
no test coverage detected