Typescript环境模块使用

时间:2019-01-23 20:14:22

标签: typescript ambient

declarations.d.ts

declare module "hot-new-module";

AmbientModules.ts

///<reference path = "declarations.d.ts"/> //this statement is not from offical guide, I added it
import x, {y} from "hot-new-module";//Error: cannot find module "hot-new-module"
x(y);

示例摘自TypeScript官方指南。但是它包含cannot find module错误。 我添加了引用路径语句。该错误仍然存​​在,有人可以帮忙吗?

相关链接:Typescript Shorthand ambient modules,但询问了有关x类型的另一个问题。

0 个答案:

没有答案