<% if( this.jsdoc.params.length ) { %>
Parameters
<% } %>
<% _(this.jsdoc.params).each(function(param) { %>
-
<%= param.name%>: <%= self.printTypeAsString(param.type) %>
<%= self.getTextHtml(param) %>
<% }); %>
<% if(!this.isConstructor) { %>
<%if (this.jsdoc.returns && (this.jsdoc.returns.type || this.jsdoc.returns.text) ) { %>
Returns
<%= self.printTypeAsString(this.jsdoc.returns.type) %>
<% if(this.jsdoc.returns.text){ %>
<%= self.getTextHtml(this.jsdoc.returns) %>
<% } %>
<% }%>
<% }%>
<% if(this.jsdoc.throws && this.jsdoc.throws.length) { %>
Throws
<% _(this.jsdoc.throws).each(function(t) { %>
-
<%= self.printTypeAsString(t.type) %>
<%= self.getTextHtml(t) %>
<% }); %>
<% } %>