30 lines
1.3 KiB
HTML
30 lines
1.3 KiB
HTML
{% import "lib/memberHelpers.html" as memberHelpers -%}
|
|
{% import "lib/descendants.html" as descendants -%}
|
|
{% import "lib/paramList.html" as params -%}
|
|
{% extends 'base.template.html' -%}
|
|
|
|
{% block body %}
|
|
<p>{$ doc.whatItDoes | marked $}</p>
|
|
{% include "includes/security-notes.html" %}
|
|
{% include "includes/deprecation.html" %}
|
|
{% block overview %}
|
|
{% include "includes/class-overview.html" %}
|
|
{% endblock %}
|
|
{% block details %}
|
|
{% block additional %}{% endblock %}
|
|
{% include "includes/description.html" %}
|
|
{$ memberHelpers.renderProperties(doc.staticProperties, 'static-properties', 'static-property', 'Static Properties') $}
|
|
{$ memberHelpers.renderMethodDetails(doc.staticMethods, 'static-methods', 'static-method', 'Static Methods') $}
|
|
{% if doc.constructorDoc %}
|
|
<h2>Constructor</h2>
|
|
{$ memberHelpers.renderMethodDetail(doc.constructorDoc, 'constructor') $}{% endif %}
|
|
|
|
{$ memberHelpers.renderProperties(doc.properties, 'instance-properties', 'instance-property', 'Properties') $}
|
|
|
|
{$ memberHelpers.renderMethodDetails(doc.methods, 'instance-methods', 'instance-method', 'Methods') $}
|
|
|
|
{% block annotations %}{% include "includes/annotations.html" %}{% endblock %}
|
|
{% endblock %}
|
|
{% include "includes/how-to-use.html" %}
|
|
{% endblock %}
|