从dist文件夹中提取时的打字稿定义

时间:2017-08-07 20:36:16

标签: typescript

当你从dist文件夹中提取类时,有没有办法为类定义类型?

阿卡,有时候我会......

import MyClass from "dist/classes/myClass.ts";

const instance = new MyClass();

你如何编写一个适用于这种情况的.d.ts文件,或者可能吗?

1 个答案:

答案 0 :(得分:1)

  

你如何编写适用于这种情况的.d.ts文件,或者可能吗?

declaration:true中与tsconfig.json进行编译,并在package.json中使用types

更多

快速入门:https://basarat.gitbooks.io/typescript/content/docs/quick/nodejs.html