2017-05-02 14:08:49 +00:00
|
|
|
{%- if doc.decorators.length %}
|
|
|
|
|
<section class="annotations">
|
|
|
|
|
<h2>Annotations</h2>
|
2021-09-14 10:59:19 +00:00
|
|
|
|
2017-05-02 14:08:49 +00:00
|
|
|
{%- for decorator in doc.decorators %}
|
2021-09-14 10:59:19 +00:00
|
|
|
<code-example language="ts" hideCopy="true" class="no-box api-heading{% if decorator.deprecated %} deprecated-api-item{% endif %}">@{$ decorator.name $}({$ decorator.arguments $})</code-example>
|
|
|
|
|
|
|
|
|
|
{%- if not decorator.notYetDocumented %}
|
|
|
|
|
{$ decorator.description | marked $}
|
|
|
|
|
{%- endif %}
|
|
|
|
|
{%- endfor %}
|
2017-05-02 14:08:49 +00:00
|
|
|
</section>
|
2021-09-14 10:59:19 +00:00
|
|
|
{%- endif -%}
|