exportstag.js 386 B

123456789101112131415161718192021
  1. define(function () {
  2. /**
  3. A module representing a shirt.
  4. @exports my/shirt
  5. @version 1.0
  6. */
  7. var shirt = {
  8. /** A property of the module. */
  9. color: "black",
  10. /** @constructor */
  11. Turtleneck: function(size) {
  12. /** A property of the class. */
  13. this.size = size;
  14. }
  15. };
  16. return shirt;
  17. });