You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.2 KiB
47 lines
1.2 KiB
{% if include.data.borrows.size %}
|
|
## Extends
|
|
{% for item in include.data.borrows %}
|
|
[{{ item }}]({{ site.baseurl }}/api/class/{{ item | api_url }})
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% if include.data.properties.size > 0 %}
|
|
## Properties
|
|
link | summary
|
|
--- | ---
|
|
{% for item in include.data.properties %}[{{ item.name }}]({{ site.baseurl }}/api/{{ item.dataTypes[0] | api_url }}) | {{ item.summary | no_nl }}
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% if include.data.methods.size > 0 %}
|
|
## Methods
|
|
{% for item in include.data.methods %}
|
|
|
|
### {{ item.name }}
|
|
{{ item.summary | no_nl }}
|
|
|
|
#### Signature
|
|
`{{ item.signature }}`
|
|
|
|
{% if item.params.size > 0 %}
|
|
#### Parameters
|
|
|
|
Name | Type | Description
|
|
--- | --- | ---
|
|
{% for param in item.params %}{{ param.name }} | {{ param.types }} | {{ param.desc | no_nl }}
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
#### Return type
|
|
{% for type in item.return.types %}[{{ type }}]({{ site.baseurl}}/api/class/{{ type | api_url }}), {% endfor %}: {{ item.return.desc }}
|
|
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% if include.data.events.size > 0 %}
|
|
## Events
|
|
link | summary
|
|
--- | ---
|
|
{% for item in include.data.events %}[{{ item.name }}]({{ site.baseurl }}/api/{{ item.dataTypes[0] | api_url }}) | {{ item.summary | no_nl }}
|
|
{% endfor %}
|
|
{% endif %}
|