{% if authors %}Authors: {{ authors | join(', ') }}{% endif %}
{{ description }}
{% for function in functions %}
{% if function.authors %}Authors: {{ function.authors | join(', ') }}{% endif %}
{{ function.description }} {% if function.params %}
name | description | default |
---|---|---|
{% for param in function.params %}{{ param.name }} | {{ param.description }} | {{ param.default }} |
{% endfor %} | ||
{% endif %} |
{% if function.throws %}
{% for throw in throws %}{{ throw.type }}: {{ throw.message }}
{% endfor %}
{% endif %}
{% endfor %}