Source: module2.js

// http://usejsdoc.org/tags-module.html
//Defining exported symbols as a member of 'this'

/** @module bookshelf */
/** @class */
this.Book = function (title) {
    /** The title. */
    this.title = title;
};