You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BaseWindow has no property 'webContents' , BrowserWindow has! From the parameter name 'browserWindow', it's clear that BrowserWindow should be used instead of BaseWindow.
pls fix this syntax error
The text was updated successfully, but these errors were encountered:
yarn start
electron/src/menu/system.ts:79:20 - error TS2339: Property 'webContents' does not exist on type 'BaseWindow'.
const signOutTemplate: MenuItemConstructorOptions = { click: (_menuItem, browserWindow) => browserWindow?.webContents.send(EVENT_TYPE.UI.SYSTEM_MENU, EVENT_TYPE.ACTION.SIGN_OUT), label: locale.getText('menuSignOut'), };
(property) Electron.MenuItemConstructorOptions.click?: ((menuItem: Electron.MenuItem, window: (Electron.BaseWindow) | (undefined), event: Electron.KeyboardEvent) => void) | undefined
BaseWindow has no property 'webContents' , BrowserWindow has! From the parameter name 'browserWindow', it's clear that BrowserWindow should be used instead of BaseWindow.
pls fix this syntax error
The text was updated successfully, but these errors were encountered: