{% 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 %}
{% endif %} {% endmacro %} {% block header %}

{$ doc.name $}

{% if doc.packageDeprecated or (not doc.isPrimaryPackage and doc.deprecated !== undefined) %}{% endif %} {% if doc.security !== undefined %}{% endif %} {% if doc.pipeOptions.pure === 'false' %}{% endif %}
{% endblock %} {% block body -%} {$ doc.shortDescription | marked $} {% if doc.description %}{$ doc.description | marked $}{% endif %} {% include "includes/see-also.html" %} {% if doc.isPrimaryPackage %}

Entry points

{$ listItems([doc.packageInfo.primary], 'Primary', '#primary-entry-point-exports') $} {$ listItems(doc.packageInfo.secondary, 'Secondary') $} {% endif %}

{% if doc.isPrimaryPackage %}Primary entry{% else %}Entry{% endif %} point exports

{% 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 %}