我是新Javascript,真的不知道如何将以下IIFE转换为Typescript。 请注意,WALKTHROUGHS是位于另一个文件中的模块模式。
(function()
{
function WalkthroughFTUE()
{
Walkthrough.apply(this, ["ftue"]);
}
//WALKTHROUGHS is a module pattern and lies in another file
WALKTHROUGHS.add(new WalkthroughFTUE());
})();