28 lines
811 B
HTML
28 lines
811 B
HTML
{% import "lib/directiveHelpers.html" as directiveHelper -%}
|
|
{% extends 'class.template.html' -%}
|
|
|
|
{% block overview %}{% endblock %}
|
|
|
|
{% block details -%}
|
|
{% include "includes/ngmodule.html" %}
|
|
{% include "includes/selectors.html" %}
|
|
|
|
{$ directiveHelper.renderBindings(doc.inputs, 'inputs', 'input', 'Inputs') $}
|
|
|
|
{$ directiveHelper.renderBindings(doc.outputs, 'outputs', 'output', 'Outputs') $}
|
|
|
|
{% include "includes/export-as.html" %}
|
|
|
|
{% if doc.description or doc.usageNotes %}
|
|
<section class="description">
|
|
<h2>Description</h2>
|
|
{$ (doc.description or '') | trimBlankLines | marked $}
|
|
{$ (doc.usageNotes or '') | trimBlankLines | marked $}
|
|
</section>
|
|
{% endif %}
|
|
|
|
<h2>Class</h2>
|
|
{% include "includes/class-members.html" %}
|
|
{% endblock %}
|
|
|
|
{% block endNotes %}{% endblock %} |