* Return the application window by id.
(windowId: number | null)
| 143 | * Return the application window by id. |
| 144 | */ |
| 145 | get(windowId: number | null): BaseWindow | undefined { |
| 146 | if (windowId == null) return undefined |
| 147 | return this._windows.get(windowId) |
| 148 | } |
| 149 | |
| 150 | /** |
| 151 | * Return the BrowserWindow by id. |
no outgoing calls
no test coverage detected