schangxiang@126.com
2025-09-17 c9c91ad3e3ac218d81c86809c93a35622b51a686
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{% include "lib/macros.html" %}
{% extends "api/api.template.html" %}
 
{% block additional %}  
 
  {% if doc.params or doc.returns or doc.this or doc.kind == 'function' -%}
    <h2 id="usage">Usage</h2>
    {% if doc.usage %}
      {$ doc.usage | code $}
    {% else %}
      {$ functionSyntax(doc) $}
    {% endif %}
 
    {% include "lib/params.template.html" %}
    {% include "lib/this.template.html" %}
    {% include "lib/returns.template.html" %}
  {%- endif %}
 
  {% include "lib/methods.template.html" %}
  {% include "lib/events.template.html" %}
  {% include "lib/properties.template.html" %}
 
{% endblock %}