当你从dist文件夹中提取类时,有没有办法为类定义类型?
阿卡,有时候我会......import MyClass from "dist/classes/myClass.ts";
const instance = new MyClass();
你如何编写一个适用于这种情况的.d.ts
文件,或者可能吗?
答案 0 :(得分:1)
你如何编写适用于这种情况的.d.ts文件,或者可能吗?
在declaration:true
中与tsconfig.json
进行编译,并在package.json中使用types
。
快速入门:https://basarat.gitbooks.io/typescript/content/docs/quick/nodejs.html