在 Typescript 应用程序中使用 Windows-Runtime-Component

Use a Windows-Runtime-Component in a Typescript-Application

我创建了一个 WinJS 应用程序 [Windows-10-UWP] 将代码转换为 Typescript。
现在我有一个 Windows-Runtime-Component,我想在我的 .ts 文件中引用它。
按照 here 给出的说明,我已经在正常 javascript 中实现了这一点。但是我不知道在 Typescript 中实现这个。这里的主要问题是,我无法创建对 Window-Runtime 组件的引用。这甚至可能吗?

The main problem here is, that I am not able to create a reference to the Window-Runtime Component. Is this even possible?

是的,这是可能的。如果您在主项目中引用了 Windows 运行时组件。命名空间将存储在全局 window 对象中。因此,您可以访问 Windows 运行时组件,如下所示:

let variable= window["MyTestComponent"];