(builderId: string)
| 21 | export let focusedBuilderWindow: BuilderWindowType = null; |
| 22 | |
| 23 | export function getBuilderWindowById(builderId: string): BuilderWindowType { |
| 24 | return builderWindows.find((win) => win.builderId === builderId); |
| 25 | } |
| 26 | |
| 27 | export function getBuilderWindowByWebContentsId(webContentsId: number): BuilderWindowType { |
| 28 | return builderWindows.find((win) => win.webContents.id === webContentsId); |
no outgoing calls
no test coverage detected