{% for reference in references %} {{ reference.title }} {{ reference.modifier }} {% endfor %}
{% for reference in references %} {% if reference.reference_type == 'class' %} {% set class = reference %}
{{ class.title }} {{ class.modifier }}

{{ class.description }}

{% if class.constructor %} Signature

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

{% if class.constructor.parameters %} Parameters
    {% for parameter in class.constructor.parameters %}
  • {{ parameter.name }} {% if parameter.type %}({{ parameter.type }}){% endif %} {%- if parameter.description %}: {{ parameter.description }}{% endif %}
  • {% endfor %}
{% endif %} {% endif %}
{% for variable in class.variables %}
{{ variable.title }} {{ variable.modifier }}

{{ variable.description }}

{% if variable.signature %} Signature

{{ variable.signature }}

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

{{ property.description }}

{% if property.signature %} Signature

{{ property.signature }}

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

{{ method.description }}

{% if method.signature %} Signature

{{ method.signature }}

{% endif %} {% if method.parameters %} Parameters
    {% for parameter in method.parameters %}
  • {{ parameter.name }} {% if parameter.type %}({{ parameter.type }}){% endif %} {%- if parameter.description %}: {{ parameter.description }}{% endif %}
  • {% endfor %}
{% endif %}
{% endfor %} {% endif %} {% if reference.reference_type == 'function' %} {% set function = reference %}
{{ function.title }} {{ function.modifier }}

{{ function.description }}

{% if function.signature %} Signature

{{ function.signature }}

{% endif %} {% if function.parameters %} Parameters
    {% for parameter in function.parameters %}
  • {{ parameter.name }} {% if parameter.type %}({{ parameter.type }}){% endif %} {%- if parameter.description %}: {{ parameter.description }}{% endif %}
  • {% endfor %}
{% endif %}
{% endif %} {% endfor %}