// 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;
};
// 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;
};