关于 typescript 联合类型转换

Konsole.vim

  • 如何让 ts 自动知道 icon 肯定是 NodeIcon 类型的呢?
  • 如果不行,有没有比自赋值更好的转换方式呢?
// ...
public async icon(icon: string | NodeIcon) {
    if (typeof icon === "string") icon = new NodeIcon(
        (await dataFetch("icon/" + icon + ".tico")).split("\n").filter(l => l)
    )
    return this.q(({ c }) => {
        const eIcon = document.createElement("canvas")
        eIcon.width = icon.matrix[0].length
        eIcon.height = icon.matrix.length
        c.appendChild(eIcon);
        icon.paint(eIcon.getContext("2d"))
    })
}
// ...
阅读 2.5k
1 个回答
var nIcon = (typeof icon === "string") ? new NodeIcon(...) : icon

这样应该知道nIcon的类型了吧

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
logo
Microsoft
子站问答
访问
宣传栏