2015-05-19 17:29:34 -04:00
|
|
|
{% include "lib/githubLinks.html" -%}
|
2015-04-25 17:29:20 -04:00
|
|
|
{% include "lib/paramList.html" -%}
|
|
|
|
{% extends 'layout/base.template.html' -%}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
p.location-badge.
|
2015-05-15 08:57:38 -04:00
|
|
|
exported from {@link {$ doc.moduleDoc.id $} {$doc.moduleDoc.id $} }
|
2015-05-19 17:29:34 -04:00
|
|
|
defined in {$ githubViewLink(doc) $}
|
2015-04-25 17:29:20 -04:00
|
|
|
|
|
|
|
:markdown
|
|
|
|
{$ doc.description | indent(2, true) $}
|
|
|
|
|
|
|
|
{%- if doc.constructorDoc or doc.members.length -%}
|
|
|
|
.l-main-section
|
|
|
|
h2 Members
|
|
|
|
|
|
|
|
{%- if doc.constructorDoc %}
|
|
|
|
.l-sub-section
|
|
|
|
h3 {$ doc.constructorDoc.name $}
|
|
|
|
|
2015-05-15 08:57:38 -04:00
|
|
|
{% if doc.constructorDoc.parameters %}
|
2015-04-25 17:29:20 -04:00
|
|
|
pre.prettyprint
|
|
|
|
code.
|
2015-05-15 08:57:38 -04:00
|
|
|
{$ doc.constructorDoc.name $}{$ paramList(doc.constructorDoc.parameters) | indent(4, true) | trim $}
|
2015-04-25 17:29:20 -04:00
|
|
|
{% endif %}
|
|
|
|
:markdown
|
|
|
|
{$ doc.constructorDoc.description | indent(6, true) | replace('## Example', '') | replace('# Example', '') $}
|
|
|
|
|
|
|
|
|
|
|
|
{% endif -%}
|
|
|
|
|
2015-04-28 09:47:17 -04:00
|
|
|
{%- for member in doc.members %}{% if not member.private %}
|
2015-04-25 17:29:20 -04:00
|
|
|
.l-sub-section
|
|
|
|
h3 {$ member.name $}
|
|
|
|
|
2015-05-15 08:57:38 -04:00
|
|
|
{% if member.parameters %}
|
2015-04-25 17:29:20 -04:00
|
|
|
pre.prettyprint
|
|
|
|
code.
|
2015-05-15 08:57:38 -04:00
|
|
|
{$ member.name $}{$ paramList(member.parameters) | indent(4, true) | trim $}{$ returnType(doc.returnType) $}
|
2015-04-25 17:29:20 -04:00
|
|
|
{% endif %}
|
|
|
|
:markdown
|
2015-05-06 18:53:58 -04:00
|
|
|
|
2015-04-25 17:29:20 -04:00
|
|
|
{$ member.description | indent(6, true) | replace('## Example', '') | replace('# Example', '') $}
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-04-28 09:47:17 -04:00
|
|
|
{% endif %}{% endfor %}
|
2015-04-25 17:29:20 -04:00
|
|
|
{%- endif -%}
|
|
|
|
|
|
|
|
{% endblock %}
|