问题
Ts 项目中有 AMap 报错问题
解决问题
d.ts 加入下面的代码
declare interface Window {
WebViewJavascriptBridge: any;
WVJBCallbacks: any;
AMap: any;
init: any;
AMapUI: any;
}
.eslintrc.js 加入下面的代码
globals: {
AMap: true
},
Ts 项目中有 AMap 报错问题
d.ts 加入下面的代码
declare interface Window {
WebViewJavascriptBridge: any;
WVJBCallbacks: any;
AMap: any;
init: any;
AMapUI: any;
}
.eslintrc.js 加入下面的代码
globals: {
AMap: true
},