13 lines
359 B
HTML
13 lines
359 B
HTML
{% macro paramList(params, truncateLines) -%}
|
|
{%- if params -%}
|
|
({%- for param in params -%}
|
|
{$ param | escape | truncateCode(truncateLines) $}{% if not loop.last %}, {% endif %}
|
|
{%- endfor %})
|
|
{%- endif %}
|
|
{%- endmacro -%}
|
|
|
|
|
|
{% macro returnType(returnType) -%}
|
|
{%- if returnType %}: {$ returnType | escape $}{% endif -%}
|
|
{%- endmacro -%}
|