mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
14 lines
463 B
Plaintext
14 lines
463 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.combined}}}` - {% if param.isOptional %}(Optional){% endif %}{{{param.docText}}}
|
|
{% endeach %}
|
|
{% if meth.returnsSomething %}
|
|
- **Returns** `{{{meth.returnType}}}` - {{{meth.returnDocText}}}
|
|
{% endif %}
|
|
{% endeach %}
|
|
{% endif %} |