{% extends 'layout.html' %} {% block body %}

{$ doc.name $}

{$ doc.badgeType $}

{$ doc.description | ngEscape $} {% include 'notes.html' -%}

Imports

This module has the following dependencies

{% for import in doc.imports %}

{$ import $}

{% endfor %}

Exports

This module exports the following symbols

{% for export in doc.exports %}

{% if export.location and not export.ignore %} {$ export.name $} {% elseif export.ignore %} {$ export.name $} (internal) {% else %} {$ export.name $} {% endif %}

{% if export.description %} {$ export.description | ngEscape $} {% else %}

The {$ export.name $} does not belong to this library. Is re-exported so you don't have to import it again.

You can find information about it in the Angular documentation.

{% endif %} {% endfor %} {% endblock %}