标签: typescript
Typescript以下代码似乎根本没有任何问题,尽管我希望它不希望尝试访问id的{{1}}属性。
id
我希望x的类型为test,但是没有;打字稿似乎太相信(IdObject | undefined)总是会返回数组类型的东西。
x
test
(IdObject | undefined)
是否有办法使打字稿意识到find可能返回未定义的内容?
find
Here's the same code on the typescript playground, if it helps.