如何编写第三方模块的打字稿定义,以便我可以导入任何东西

时间:2018-03-06 16:28:11

标签: typescript es6-modules typescript-definitions

我有一个没有打字稿定义的第三方库。

我可以编写允许我从该模块导入任何内容的模块声明吗?

import { Anything } from 'untypedexternalmodule';

1 个答案:

答案 0 :(得分:0)

是。只需将global.d.ts文件添加到包含

的项目中即可
declare module 'untypedexternalmodule';

如果您尝试运行您编写的代码,您将获得要求您完成此操作的信息。