exportstag6.js 354 B

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