有一个模块表示我需要的对象作为返回类型。打字稿正在跟我做public myThingGetter(): Promise<ThisIsTheModuleName>
。我有什么选择?
答案 0 :(得分:2)
public myThingGetter():承诺。我有什么选择?
Promise<ThisIsTheModuleName>
是类型声明空间中的注释。
我认为您需要使用Promise<typeof ThisIsTheModuleName>
或者使用import
代替var/const
等。
此处介绍:https://basarat.gitbooks.io/typescript/content/docs/project/declarationspaces.html