VS2015型防护检查错误“无法解决”

时间:2016-02-15 11:18:57

标签: visual-studio typescript visual-studio-2015

在我的TypeScripte项目中,我有这个方法:

function setIntro(intro: HTMLElement|HTMLElement[]) {
    if (intro instanceof Array) {
        console.log(intro.length);
    }
}

项目编译得很好,但Visual Studio突出显示.length,因为它无法解析。

我们可以为VS添加对Type Guards的支持吗?我不想禁用检查。

0 个答案:

没有答案