jsdoc/test/fixtures/alias.js
2014-03-04 13:47:57 -08:00

14 lines
204 B
JavaScript

var myObject = (function() {
/** Give x another name.
@alias myObject
@namespace
*/
var x = {
/** document me */
myProperty: 'foo'
}
return x;
})();