Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 636 Bytes

class.md

File metadata and controls

26 lines (21 loc) · 636 Bytes

{{ name }}

{% if authors %}Authors: {{ authors | join(', ') }}{% endif %}

{{ description }}

Methods

{% for function in functions %}

{{ function.name }}

{% if function.authors %}Authors: {{ function.authors | join(', ') }}{% endif %}

{{ function.description }} {% if function.params %}

Parameters

name description default
{% for param in function.params %}{{ param.name }} {{ param.description }} {{ param.default }}
{% endfor %}
{% endif %}

{% if function.throws %}

Throws

{% for throw in throws %}{{ throw.type }}: {{ throw.message }}
{% endfor %} {% endif %} {% endfor %}