@prototype module

Declares that @property and bit-docs-js/tags/function tags belong to the preceeding bit-docs-js/tags/function's prototype object.

@prototype

/**
 * @function
 * Creates an Animal
 */
Animal = function(){ ... }
/** @prototype */
Animal.prototype = {
   /**
    * Eats another animal.
    */
    eat: function(animal){ ... }
}