mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
22 lines
253 B
JavaScript
22 lines
253 B
JavaScript
/**
|
|
* @constructor
|
|
*/
|
|
someObject = function() {}
|
|
|
|
/**
|
|
* @constructor
|
|
* @variation 2
|
|
*/
|
|
someObject = function() {}
|
|
|
|
/**
|
|
* @constructor
|
|
* @variation (3)
|
|
*/
|
|
someObject = function() {};
|
|
|
|
/**
|
|
* @memberof someObject(2)
|
|
*/
|
|
someMethod = function() {}
|