我在 html 标头中声明了一个全局变量,并希望从模块内的类中引用它。如何防止编译器错误:
错误 TS2095:找不到符号“selfGlobal”。
<html>
<head>
<script>
var selfGlobal = this;
var globalVariable = 1;
</script>
</head>
<body>
<script src="test.js"></script>
</body>
</html>
在 test.ts
module Test{
export class TestClass {
private _privateVariable:any;
constructor() {
this._privateVariable = selfGlobal.globalVariable; // compile error throws here, but the code can run
}
}
}
谢谢!火星