1
我想在我的項目中使用this meteor package。我只是Typescript的初學者,因此對如何定義聲明文件感到困惑。我希望能夠這樣做:如何在打字稿文件中使用流星包
/// <reference to platform declaration file
console.log('os: ' + platform.os.toString());
有關如何定義此包的聲明文件的任何幫助。由於
我想在我的項目中使用this meteor package。我只是Typescript的初學者,因此對如何定義聲明文件感到困惑。我希望能夠這樣做:如何在打字稿文件中使用流星包
/// <reference to platform declaration file
console.log('os: ' + platform.os.toString());
有關如何定義此包的聲明文件的任何幫助。由於
按this answer上How to import a js library without definition file in typescript file,
嘗試增加
/// <amd-dependency path="lib/platform">
到文件的頂部。
這意味着我不需要爲這個模塊定義typescript聲明文件? – surenyonjan
顯示如何將包添加到項目中。這將提供一些線索。 – toddmo
meteor add snamoah:useragent – surenyonjan
你在說,它給出的錯誤是'platform'是'undefined'? – toddmo