type.html revision c2e0dbddbe15c98d52c4786dac06cb8952a8ae6d
1<div>
2  <h3 id="{{id}}">{{name}}</h3>
3  <div>
4    {{^is_object}}<dd>
5      {{+partials.variable_type}}
6    </dd>{{/is_object}}
7    {{?description}}<dd>
8      {{{description}}}
9    </dd>{{/description}}
10    {{?properties}}
11    <h4 id="{{type.name}}-properties">
12      Properties of <a href="#type-{{type.name}}">{{type.name}}</a>
13    </h4>
14    <dd><dl>{{#properties}}
15      {{+partials.parameter_full}}
16    {{/}}</dl></dd>
17    {{/properties}}
18    {{?functions}}
19    <h4 id="{{type.name}}-methods">
20      Methods of <a href="#type-{{type.name}}">{{type.name}}</a>
21    </h4>
22    <dd><dl>{{#functions}}
23      {{+partials.function api:api}}
24    {{/}}</dl></dd>
25    {{/functions}}
26    {{?events}}
27    <h4 id="{{type.name}}-events">
28      Events of <a href="#type-{{type.name}}">{{type.name}}</a>
29    </h4>
30    <dd><dl>{{#events}}
31      {{+partials.event api:api}}
32    {{/}}</dl></dd>
33    {{/events}}
34  </div>
35</div>
36