如何使用vscode

时间:2019-04-17 13:24:12

标签: javascript typescript visual-studio-code jsdoc

我正在使用带有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#methodParent#method中自动选择类型。我尝试了@inheritdocs,但似乎没有这样做。有什么办法标记这个吗?

0 个答案:

没有答案