Rush Stack商店博客活动
跳至主要内容

ae-extra-release-tag

"文档注释不应该包含超过一个发布标签。"

备注

这些 TSDoc 修饰符称为“发布标签”。

  • @public
  • @beta
  • @alpha
  • @internal

文档注释最多应该包含一个发布标签。

例子

/**
* @public @public
*/
export function f1(): void {}

// Warning: The doc comment should not contain more than one release tag.

在上面的例子中,@public 发布标签出现了两次,因此会报告错误。

如何修复

删除多余的发布标签。

另见