标签: typescript electron
documentation显示了如何在页面之间共享数据:
// In the main process. global.sharedObject = { someProperty: 'default value' }
但使用Typescript版本,会出现此错误:
错误TS2339:类型'Global'上不存在属性'sharedObject'。