0
如何在我的應用程序聲明文件中獲取外部模塊的引用?請看下面的例子:在應用程序類型聲明中引用外部模塊
// file meteor.d.ts
declare module "meteor/meteor" {
export module Meteor {
...
}
}
// file context.d.ts
// not part of any module
declare interface IContext {
Meteor: typeof Meteor; // how do I get the referwence to Meteor?
}
感謝您的任何幫助。
謝謝。對不起,雙重發布。 – tomitrescak
@tomitrescak沒有。這個問題在這裏屬於一個問題。並作爲請求屬於那裏 – basarat
對於其他人到達這裏,有一種可能的方式來做到這一點:https://github.com/Microsoft/TypeScript/issues/7352#issuecomment-191547232但我不推薦它。 – basarat