22 lines
593 B
HTML
22 lines
593 B
HTML
{% include "lib/githubLinks.html" -%}
|
|
{% include "lib/paramList.html" -%}
|
|
{% extends 'layout/base.template.html' -%}
|
|
|
|
{% block body %}
|
|
.l-main-section
|
|
h2(class="function export") {$ doc.name $}
|
|
|
|
{% if doc.parameters %}
|
|
pre.prettyprint
|
|
code.
|
|
{$ doc.name $}{$ paramList(doc.parameters) | indent(4, true) | trim $}{$ returnType(doc.returnType) $}
|
|
{% endif %}
|
|
|
|
p.location-badge.
|
|
exported from {@link {$ doc.moduleDoc.id $} {$doc.moduleDoc.id $} }
|
|
defined in {$ githubViewLink(doc) $}
|
|
|
|
:markdown
|
|
{$ doc.description | indent(4, true) | trimBlankLines $}
|
|
|
|
{% endblock %} |