easyappointments/rsc/scripts/jsdoc/test/fixtures/alias.js
2013-07-02 17:20:39 +00:00

13 lines
No EOL
212 B
JavaScript

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