2015-03-31 16:51:25 -04:00
|
|
|
{% include "lib/paramList.html" -%}
|
2015-05-19 17:29:34 -04:00
|
|
|
{% include "lib/githubLinks.html" -%}
|
2015-03-31 16:51:25 -04:00
|
|
|
{% extends 'layout/base.template.html' -%}
|
2014-12-04 09:02:03 -05:00
|
|
|
|
|
|
|
{% block body %}
|
2015-05-19 07:54:01 -04:00
|
|
|
<h1 class="class export">{$ doc.name $} <span class="type">{$ doc.docType $}</span></h1>
|
2015-05-19 08:11:20 -04:00
|
|
|
<p class="module">exported from {@link {$ doc.moduleDoc.id $} {$doc.moduleDoc.id $} }<br/>
|
2015-05-19 17:29:34 -04:00
|
|
|
defined in {$ githubViewLink(doc) $}
|
|
|
|
</p>
|
2014-12-04 09:02:03 -05:00
|
|
|
<p>{$ doc.description | marked $}</p>
|
|
|
|
|
2015-04-07 03:23:07 -04:00
|
|
|
{%- if doc.constructorDoc or doc.members.length -%}
|
2014-12-04 09:02:03 -05:00
|
|
|
<h2>Members</h2>
|
2015-04-08 11:11:26 -04:00
|
|
|
|
2015-03-31 16:51:25 -04:00
|
|
|
{%- if doc.constructorDoc %}
|
2015-04-08 11:11:26 -04:00
|
|
|
<section class="member constructor">
|
2015-04-18 17:06:35 -04:00
|
|
|
<h1 id="constructor" class="name">{$ doc.constructorDoc.name $}{$ paramList(doc.constructorDoc.params) $}</h1>
|
2015-04-08 11:11:26 -04:00
|
|
|
{% marked %}
|
|
|
|
{$ doc.constructorDoc.description $}
|
|
|
|
{% endmarked %}
|
|
|
|
</section>
|
2015-03-31 16:51:25 -04:00
|
|
|
{% endif -%}
|
2015-04-08 11:11:26 -04:00
|
|
|
|
2015-04-17 11:24:07 -04:00
|
|
|
{%- for member in doc.members %}{% if not member.private %}
|
2015-04-08 11:11:26 -04:00
|
|
|
<section class="member">
|
2015-07-02 15:01:04 -04:00
|
|
|
<h1 id="{$ member.name $}" class="name">
|
|
|
|
{$ member.name $}{% if member.optional %}?{% endif %}{$ paramList(member.params) $}
|
|
|
|
</h1>
|
2015-04-08 11:11:26 -04:00
|
|
|
{% marked %}
|
|
|
|
{$ member.description $}
|
|
|
|
{% endmarked %}
|
|
|
|
</section>
|
|
|
|
|
2015-04-17 11:24:07 -04:00
|
|
|
{% endif %}{% endfor %}
|
2015-04-07 03:23:07 -04:00
|
|
|
{%- endif -%}
|
2014-12-04 09:02:03 -05:00
|
|
|
|
|
|
|
{% endblock %}
|