type ParticleID = number & {
readonly __tag__: 'ParticleID';
};
type effectInfo = {
[P in sometype]:sometype[P]
// ...
}
class aaa {
_list:ReCord<ParticleID,effectInfo>
GetInfo(arg: ParticleID | effectInfo): effectInfo {
if (typeof(arg) == 'object')
return arg
else
return this._list[arg];
}
}
除了用typeof 有没有其他ts一点的语法?比如 is
,in
,as
这些关键词?
楼主混淆了ts中的typeof和typeof操作符
ts中的typeof是在type或者interface中生效的,获取的是ts类型
例如
type FunctionType = typeof Function
而typeof操作符是获取js数据类型的,
楼主声明了一个联合类型,那么在使用的时候必须使用到“类型守卫”,也就是使用typeof操作符来判断是什么数据类型