mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
15 lines
519 B
Plaintext
15 lines
519 B
Plaintext
|
|
<% if (hasMethods) { %>
|
|
### Methods
|
|
|
|
<% methods.forEach(function(meth) { -%>
|
|
- **<%= meth.name %>**<%- meth.signature %><% if (meth.returnsSomething) { %>: `<%- meth.returnType %>`<% } %><br/>
|
|
<%= meth.docText %>
|
|
<% meth.params.forEach(function(param) { -%>
|
|
- *<%= param.name%>:* `<%- param.type %>` - <% if (param.isOptional) { %>(Optional) <% } %><%= param.docText %>
|
|
<% }) -%>
|
|
<% if (meth.returnsSomething) { -%>
|
|
- **Returns** `<%- meth.returnType %>` - <%= meth.returnDocText %>
|
|
<% } -%>
|
|
<% }) -%>
|
|
<% } %> |