在node.js包的typescript中导出模块中的类和接口

时间:2017-04-25 06:53:52

标签: javascript node.js typescript module package

我有一个Exception接口和一个从该接口继承的具体类。我希望将这些类型作为node.js包导出到模块中。

iexp.ts

interface IException {}

exp.ts

class Exception implements IException {}

index.ts

module AB_Company {
    export IException;
    export Exception;
}
export {AB_Company};

以下代码仅用于观看场景。但我无法实现导出此模块。

客户端将像这样使用

import {AB_Company} from "AB_Company_Exception";
let exp:AB_Company.IException;

0 个答案:

没有答案