mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
* [ADF-2979] Update to ignore blank JSDocs for method signature * [ADF-2979] Finished adding blank JSDoc check for services
14 lines
485 B
Plaintext
14 lines
485 B
Plaintext
|
|
{% if hasMethods %}
|
|
### Methods
|
|
|
|
{% each methods as meth %}- **{{meth.name}}**{{{meth.signature}}}{% if meth.returnsSomething %}: `{{{meth.returnType}}}`{% endif %}<br/>
|
|
{{meth.docText}}
|
|
{% each meth.params as param %}
|
|
- *{{{param.name}}}:* `{{{param.type}}}` - {% if param.isOptional %}(Optional){% endif %}{{{param.docText}}}
|
|
{% endeach %}
|
|
{% if meth.returnsSomething %}
|
|
- **Returns** `{{{meth.returnType}}}` - {{{meth.returnDocText}}}
|
|
{% endif %}
|
|
{% endeach %}
|
|
{% endif %} |