Javascript – how Menu should be imported correctly in `preload`?
Under the preload/index.ts directory: I imported {Menu} from "electron"; however, when I printed Menu, it turned out to be undefined. import { Menu, ipcRenderer } from 'electron'; console.log('imported status: ', Menu, ipcRenderer) // the Menu: undefined, the ipcRenderer has value…