mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
12 lines
315 B
HTML
12 lines
315 B
HTML
{% macro paramList(params) -%}
|
|
{%- if params -%}
|
|
({%- for param in params -%}
|
|
{$ param | escape $}{% if not loop.last %}, {% endif %}
|
|
{%- endfor %})
|
|
{%- endif %}
|
|
{%- endmacro -%}
|
|
|
|
|
|
{% macro returnType(returnType) -%}
|
|
{%- if returnType %} : {$ returnType | escape $}{% endif -%}
|
|
{%- endmacro -%}
|