如何提取嵌套属性的类型?例如说我有这种类型:
type Example = {
nested: string, // how do I infer string here
other: string
}
这样我可以从Example.nested中提取“字符串”吗?
我有type myType = Pick<Example, "nested">
,并且提供了{ nested: string }
,但是我想推断该对象上“嵌套”属性的类型(在此示例中为字符串)。
答案 0 :(得分:2)