标签: typescript abstract-class type-inference
在以下代码中,除非我将返回类型添加到具体的x实现中,否则Typescript无法推断getMethods的类型。
x
getMethods
我认为推断是可能的,因为抽象类将getMethods的返回类型定义为Methods对象,而Methods对象定义了{{1}的类型}作为字符串。
Methods
这是编译器的缺点,还是由于某种原因在这里无法进行推断?