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类型的另一个问题。