{% import "macros.html" as macros %} {%- if method.description -%} {%- endif -%} {%- if method.params.length -%} {% for parameter in method.params %} {% endfor %} {%- endif -%} {%- if method.type and method.type !== "void" -%} {%- endif -%}
{%- if method.isDeprecated -%}
Deprecated
{%- endif -%} {%- if method.isAsync -%}
async
{%- endif -%} {$ method.name $}
{$ method.description | marked | safe $}
Parameters

{$ parameter.name $} {%- if parameter.isOptional -%} ? {%- endif -%}

{$ parameter.type $}

{$ parameter.description | marked | safe $}

Returns
{$ method.type $}

{$ method.returns.description | marked | safe $}