{{ class.title }}

{{ class.description }}

{% if class.constructor %}

Signature

{{ class.constructor.signature | replace("'", "") }}

{% if class.constructor.parameters %}

Parameters

{% endif %} {% endif %}
{% for variable in class.variables %}

{{ variable.title }}

{{ variable.description }}

{% if variable.type %}

Signature

-> {{ variable.type }}

{% endif %}
{% endfor %} {% for property in class.properties %}

{{ property.title }}

{{ property.description }}

{% if property.signature %}

Signature

{{ property.signature }}

{% endif %}
{% endfor %} {% for method in class.methods %}

{{ method.title }}

{{ method.description }}

{% if method.signature %}

Signature

{{ method.signature }}

{% endif %} {% if method.parameters %}

Parameters

{% endif %}
{% endfor %}