(mainWindow: Electron.BrowserWindow, pluginManager: PluginManager)
| 56 | } |
| 57 | |
| 58 | public init(mainWindow: Electron.BrowserWindow, pluginManager: PluginManager): void { |
| 59 | this.mainWindow = mainWindow |
| 60 | this.pluginManager = pluginManager |
| 61 | this.setupIPC() |
| 62 | this.loadLastMatchState() |
| 63 | // 异步加载本地应用搜索设置 |
| 64 | this.loadLocalAppSearchSetting() |
| 65 | } |
| 66 | |
| 67 | public getLaunchParam(): any { |
| 68 | return this.launchParam |
nothing calls this directly
no test coverage detected