1
Im在我的ionic2項目中使用cordova-firebase-plugin Im將它用於Firebase分析。屬性FirebasePlugin在'window'類型上不存在
在我的打字稿文件當我嘗試調用函數
window.FirebasePlugin.logEvent("page_view", {page: "Event List"});
我得到的錯誤
Property FirebasePlugin does not exist on type 'Window'
我想,我必須將其導入。我已經通過運行命令將它添加到我的項目中
cordova plugin add [email protected] --save
而且我無法找到任何有關如何添加它的參考。任何幫助,我將不勝感激
https://www.npmjs.com/package/cordova-plugin-firebase
將其添加到我的index.d.ts文件,它的工作! – JCDenton