{% extends 'base.template.html' -%}
{% macro listItems(items, title, overridePath) %}
{% set filteredItems = items | filterByPropertyValue('internal', undefined) %}
{% if filteredItems.length %}
{$ title $}
{% for item in filteredItems %}
{% endfor %}
{$ item.name $}
{% if item.deprecated !== undefined %}{$ ('**Deprecated:** ' + item.deprecated) | marked $}{% endif %}
{% if item.shortDescription %}{$ item.shortDescription | marked $}{% endif %}
{$ doc.name $}
{% if doc.isPrimaryPackage %}{% else %}{% endif %}
{% if doc.packageDeprecated or (not doc.isPrimaryPackage and doc.deprecated !== undefined) %}{% endif %}
{% if doc.security !== undefined %}{% endif %}
{% if doc.pipeOptions.pure === 'false' %}{% endif %}
No public exports.
{% endif %} {% include "includes/deprecation.html" %} {$ listItems(doc.ngmodules, 'NgModules') $} {$ listItems(doc.classes, 'Classes') $} {$ listItems(doc.decorators, 'Decorators') $} {$ listItems(doc.functions, 'Functions') $} {$ listItems(doc.structures, 'Structures') $} {$ listItems(doc.directives, 'Directives') $} {$ listItems(doc.pipes, 'Pipes') $} {$ listItems(doc.types, 'Types') $} {%- endblock %}