我创建了类型声明文件(index.d.ts
),我需要使用第三方包('moment.js' in node_modules
)的对象作为类型。
// index.d.ts
import * as Moment from 'moment';
declare var $: any;
declare var google: any;
interface foo {
a: Moment;
b: string;
...
}
我做了一个类似上面的代码,但它不起作用。如何在*.d.ts
文件中导入第三方模块?