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
}
}
}
ありがとう!火星