@use JSDoc

概述

@ignore 标记表示代码中的符号永远不应出现在文档中。此标记优先于所有其他标记。

对于包括默认模板在内的大多数 JSDoc 模板,@ignore 标记具有以下效果

示例

在以下示例中,JacketJacket#color 将不会出现在文档中。

带有 `@ignore` 标记的类
/**
 * @class
 * @ignore
 */
function Jacket() {
    /** The jacket's color. */
    this.color = null;
}

在以下示例中,Clothes 命名空间包含一个 Jacket 类。@ignore 标记必须添加到 ClothesClothes.Jacket 中。ClothesClothes.JacketClothes.Jacket#color 将不会出现在文档中。

带有子类的命名空间
/**
 * @namespace
 * @ignore
 */
var Clothes = {
    /**
     * @class
     * @ignore
     */
    Jacket: function() {
        /** The jacket's color. */
        this.color = null;
    }
};