angular-docs-cn/aio/tools/transforms/templates/api/type-alias.template.html
Peter Bacon Darwin 9783c92935 build(aio): fix various API rendering issues
Upgrading to dgeni-packages 0.21.4 gives us
access to more properties on the API docs, which
allows us to fix the following issues:

Closes #19450
Closes #19452
Closes #19456
2017-10-03 08:15:02 -07:00

14 lines
420 B
HTML

{% extends 'export-base.template.html' %}
{% block overview %}
<section class="{$ doc.docType $}-overview">
<code-example language="ts" hideCopy="true">
type {$ doc.name $}{$ doc.typeParameters | escape $}{% if doc.typeDefinition %} = {$ doc.typeDefinition | escape $}{% endif %};
</code-example>
</section>
{% endblock %}
{% block details %}
{% include "includes/description.html" %}
{% endblock %}