{% extends 'layout.html' %} {% block body %} {% include 'header.html' -%}

Selector: <{$ doc.ngSelector $}>

{$ doc.description | ngEscape $} {% include 'notes.html' -%} {% if doc.inputs.length > 0 %}

@Input()

{% for input in doc.inputs %} {% if input.description %}

{$ input.name $}

Type: {$ input.typeInfo | ngEscape $}

{% if input.initialValue %}

Initial value: {$ input.initialValue $}

{% endif %} {$ input.description | ngEscape $} {% endif %} {% endfor %} {% endif %} {% if doc.outputs.length > 0 %}

@Output()

{% for output in doc.outputs %} {% if output.description %}

{$ output.name $}

Emits: {$ output.type | emitterType $}

{$ output.description | ngEscape $} {% endif %} {% endfor %} {% endif %} {% include 'members.html' -%} {% include 'how-to-use.html' -%} {% endblock %}