此问题在此处已有答案:
What's the meaning of typeof Array[number] in Typescript?(4个答案)
9天前关闭
如果我必须得到属于numeric键的值类型的并集,那么我们必须使用number
。TS PLAYGROUND
个
const animals = ['dog', 'cat', 'hen'] as const
type Animal = typeof animals[number] // type Animal = "dog" | "cat" | "hen"
字符串
但这个number
到底是什么,type
,constant
,keyword
还是什么?
1条答案
按热度按时间jk9hmnmh1#
number
是一种表示JavaScript在TypeScript中浮动的类型。TS手册中的更多信息