You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When used on class the whole class together with all its members will be removed from documentation.
When used on member the doc-comment is parsed as usual, but is then thrown away and not added to any class.
Example:
/** * The actual implementation. * @ignore */functionfoo(){}return{/** * Here are the actual docs for #foo. */foo: function(){foo.apply(this,arguments);}}