Parameters
+Parameters
{$ params.renderParameters(overload.parameterDocs, cssClass + '-parameters', cssClass + '-parameter') $} {% if overload.type or overload.returns.type %} -Returns
+Returns
{% marked %}`{$ (overload.type or overload.returns.type) $}`{% if overload.returns %}: {$ overload.returns.description $}{% endif %}{% endmarked %} {% endif %} {% if overload.throws.length %} -Throws
+Throws
{% for error in overload.throws %} {% marked %}`{$ (error.typeList or 'Error') $}` {$ error.description $}{% endmarked %} {% endfor %} @@ -73,7 +73,7 @@ {%- macro renderMethodDetail(versionInfo, method, cssClass) -%}
+ {% if method.name !== 'constructor' %}
|
{% if method.isCallMember %}call signature
{% elseif method.isNewMember %}construct signature
@@ -106,12 +106,22 @@
|
@@ -170,10 +180,10 @@
-
+ | {$ property.name $} | {% if hasTypes %}{% endif %} | - {%- if (property.isGetAccessor or property.isReadonly) and not property.isSetAccessor %}Read-only.{% endif %} + {%- if (property.isGetAccessor or property.isReadonly) and not property.isSetAccessor %}Read Only{% endif %} {% if property.shortDescription %}{$ property.shortDescription | marked $}{% endif %} {$ (property.description or property.constructorParamDoc.description) | marked $} - {% if property.constructorParamDoc %} Declared in constructor.{% endif %} + {% if property.constructorParamDoc %} Declared in Constructor{% endif %} |
---|