有类型为
interface Other{
num : number
}
interface A{
name:'asd'|'qwe'|'pp'
ack : Other|undefined|string[]
ta : undefined|Other
}
A 类型实际代码中是以 name
属性为标准,而像 ack,ta
属性的类型是根据 name
而变化的
即当 name
为 'asd'
时 的对象,
即当 name
为 'qwe'
时 的对象,
即当 name
为 'pp'
时 的对象,
这三者的对象的属性都相同,但 ack,ta
类型会有一些不一样
有没有更优雅的写法以减少写类型判断
如果属性的类型会随name变化的话,可以考虑把对象按name分成几类,然后在判断name,typescript会自动类型收缩推断出正确的类型