{% import "lib/githubLinks.html" as github -%} {% import "lib/memberHelpers.html" as memberHelper -%} {% import "lib/paramList.html" as params -%} {% extends 'export-base.template.html' %} {% block overview %}{% include "includes/decorator-overview.html" %}{% endblock %} {% block details %} {% include "includes/description.html" %} Options {% for option in doc.members %} {% if not option.internal %} {$ option.name $} {%- if option.deprecated !== undefined %} deprecated{% endif %} {%- if option.developerPreview %} developer preview {% endif %} {%- if option.experimental %} experimental {% endif %} {$ github.githubLinks(option, versionInfo) $} {% if option.shortDescription %}{$ option.shortDescription | marked $}{% endif %} {$ option.name $}{%- if option.isOptional %}?{% endif -%}: {$ option.type | escape $} {%- if option.description or option.usageNotes %} {%- if option.description %} {$ option.description | marked({ h3: 'h4' }) $} {% endif %} {%- if option.usageNotes %} {$ option.usageNotes | marked({ h3: 'h4' }) $} {% endif %} {% endif %} {% endif %} {% endfor %} {% endblock %}