标签: visual-studio typescript visual-studio-2015
在我的TypeScripte项目中,我有这个方法:
function setIntro(intro: HTMLElement|HTMLElement[]) { if (intro instanceof Array) { console.log(intro.length); } }
项目编译得很好,但Visual Studio突出显示.length,因为它无法解析。
.length
我们可以为VS添加对Type Guards的支持吗?我不想禁用检查。