jkchao / typescript-book-chinese

TypeScript Deep Dive 中文版
https://jkchao.github.io/typescript-book-chinese/
MIT License
6.53k stars 673 forks source link

union 转 intersection 例子 #159

Closed wangxdmm closed 4 years ago

wangxdmm commented 4 years ago

string & number 最后会被推导为 never 类型

image

tsc --version Version 3.7.4

jkchao commented 4 years ago

TypeScript 版本升级以后,就不能推导出 string & number 了,我把例子代码更正一下

wangxdmm commented 4 years ago

对的,看到这里,试验了下,结果不一样,感谢修改。