mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
23 lines
475 B
JavaScript
23 lines
475 B
JavaScript
'use strict';
|
|
|
|
/** This doclet will be shown by default, just like normal. */
|
|
function normal() {}
|
|
|
|
/** This doclet will be hidden by default because it begins with an underscore. */
|
|
function _hidden() {}
|
|
|
|
/**
|
|
* Klass class
|
|
* @class
|
|
*/
|
|
function Klass() {
|
|
/** This is a private property of the class and should not be documented. */
|
|
this._privateProp = null;
|
|
|
|
/**
|
|
* This is a property explicitly marked as private.
|
|
* @private
|
|
*/
|
|
this.privateProp = null;
|
|
}
|