1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/** My test module. @module my/module */ define(function() { /** @undocumented @alias module:my/module */ var mod = { /** Document a property. */ myProperty: "foo", /** Document a method. */ myMethod: function() {} }; return mod; });