在我第一次尝试使用TypeScript编程时,我一直在使用全局变量文档和窗口,而没有声明它们的类型。有没有推荐的做法?例如,建议声明如下内容:
var document:Document; var window:Window;
答案 0 :(得分:5)
对此有推荐的做法吗?例如,建议声明如下内容:
var document : Document; var window : Window;
NO。它们由编译器使用名为lib.d.ts
的文件包含在您的编译上下文中。
https://basarat.gitbooks.io/typescript/content/docs/types/lib.d.ts.html