我已经安装了一个名为@types
的{{1}}模块,因此我可以将我的JSON字符串转换为XML,然后我将这些字符串添加到我的typings.d.ts中,然后将其导入我的组件中。但它给了我x2js
的错误,我正在使用它X2JS not defined
我正在关注他们的git repo上的test.d.ts
X2JS repo
我也尝试过添加,但结果仍然是相同的错误private J2XML = new X2JS();
X2JS is not defined
///<reference path="../../../node_modules/@types/x2js/index.d.ts" />
组件
declare module 'IX2JS';
declare const IX2JS:any;
如何在Angular 2(2.1.0)-cli中声明/导入import * as x2js from 'IX2JS';
模块?