jsdoc/test/cases/moduletag3.js

21 lines
391 B
JavaScript

/**
@module foo/Photo/manager
@desc Manage a collection of photos.
*/
/**
Construct a new Photo manager
@constructor module:foo/Photo/manager
@param {String} collectionId The identifier of the managed collection.
*/
module.exports = function(collectionId) {
/**
@function module:foo/Photo/manager#getPhoto
@param {String} photoName
*/
this.getPhoto = function() {}
}