{% 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.shortDescription %}{$ item.shortDescription | marked $}{% endif %}
{% endif %} {% endmacro %} {% block body -%} {% include "includes/deprecation.html" %} {$ 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

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