<%=item.name%><% if (item.isMethod) { %>()<% } %>

<% if (item.example) { %>

Example

<%= item.example %>
<% } %>

Description

<%= item.description %>

Syntax

<%= syntax %>

<% if (item.return) { %> <% } %> <% if (item.deprecated) { %> title="<%=item.deprecationMessage%>"<% } %>>deprecated <% } %> <% if (item.access) { %> <%= item.access %> <% } %> <% if (item.final) { %> final <% } %> <% if (item.static) { %> static <% } %> <% if (item.chainable) { %> chainable <% } %> <% if (item.async) { %> async <% } %> <% if (item.params) { %>

Parameters

<% for (var i=0; i <% } %>
<% var p = item.params[i] %> <% if (p.optional) { %> [<%=p.name%>] <% } else { %> <%=p.name%> <% } %> <%if (p.optdefault) { %>=<%=p.optdefault%><% } %> <% if (p.type) { %> <%=p.type%>: <%=p.description%> <% } %> <% if (p.multiple) {%> multiple <% } %>
<% } %> <% if (item.return) { %>

Returns

<% if (item.return.type) { %>

<%=item.return.type%>: <%= item.return.description %>

<% } %>
<% } %>