Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

readme.md

{{ title }}

Classes

{% for class in classes %} {{class.name}}: {{ class.description }} {% endfor %}

Functions

{% 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 }}
{% endfor %}
{% endif %}

{% if function.throws %}

Throws

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