2017-06-29 22:23:27 +01:00
|
|
|
{% import "lib/memberHelpers.html" as memberHelpers -%}
|
2017-09-25 19:59:44 +01:00
|
|
|
{% import "lib/descendants.html" as descendants -%}
|
2017-05-02 15:08:49 +01:00
|
|
|
{% import "lib/paramList.html" as params -%}
|
2018-02-08 15:00:53 +00:00
|
|
|
{% extends 'base.template.html' -%}
|
2017-05-02 15:08:49 +01:00
|
|
|
|
2018-02-08 15:00:53 +00:00
|
|
|
{% 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') $}
|
2018-02-22 20:54:38 +00:00
|
|
|
{% if doc.constructorDoc %}
|
|
|
|
<h2>Constructor</h2>
|
|
|
|
{$ memberHelpers.renderMethodDetail(doc.constructorDoc, 'constructor') $}{% endif %}
|
2017-05-02 15:08:49 +01:00
|
|
|
|
2018-02-08 15:00:53 +00:00
|
|
|
{$ 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" %}
|
2017-05-02 15:08:49 +01:00
|
|
|
{% endblock %}
|