使用typescript来写react遇到的一些问题

错误提示: Property '__REDUX_DEVTOOLS_EXTENSION__' does not exist on type 'Window & typeof "globalThis'."

解决方法:在项目中创建一个global.d.ts的文件,加入以下代码
export {};

declare global {
  interface Window {
    __REDUX_DEVTOOLS_EXTENSION__: Function;
  }
}

  

 

posted on 2020-09-29 22:36  人鱼之森  阅读(557)  评论(0编辑  收藏  举报