我正在使用带有jsdoc类型提示和vscode类型脚本类型检查的javascript。
在为父方法添加jsdoc类型信息时,我希望子类中的替代继承参数/返回类型。
例如我有这样的课程:
class Parent {
/**
* @param {string} a ...
* @param {number} b ...
*/
method(a, b) {
// ...
}
}
class Child extends Parent {
/** @inheritdocs */
method(a, b) {
super(a, b);
// ... do extra stuff ...
}
}
我希望Child#method
从Parent#method
中自动选择类型。我尝试了@inheritdocs
,但似乎没有这样做。有什么办法标记这个吗?