mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-10-08 14:51:32 +00:00
* [ADF-2557] Added return tag support and error messages * [ADF-2557] Set doc tool config to use index script correctly
10 lines
362 B
Plaintext
10 lines
362 B
Plaintext
|
|
{% if hasMethods %}
|
|
### Methods
|
|
|
|
{% for meth in methods %}- `{{meth.name}}{{meth.signature}}: {{meth.returnType}}`<br/>
|
|
{{meth.docText}}
|
|
{% for param in meth.params %} - `{{param.combined}}` - {% if param.isOptional %}(Optional){% endif %}{{param.docText}}
|
|
{% endfor %} - **Returns** `{{meth.returnType}}` - {{meth.returnDocText}}
|
|
{% endfor %}
|
|
{% endif %} |