Home | History | Annotate | Download | only in private
      1 <div>
      2   {{?display_name}}
      3   <h3 id="{{id}}">{{display_name}}</h3>
      4   {{/display_name}}
      5   <div>
      6     {{^is_object}}
      7     {{?enum_values}}
      8     <dd>enum of
      9       {{#enum_values}}
     10       {{?last}}or {{/}}<code>"{{name}}"</code>{{^last}}, {{/}}
     11       {{/enum_values}}
     12     </dd>
     13     {{:enum_values}}
     14     <dd>
     15       {{+partials.variable_type}}
     16     </dd>
     17     {{/enum_values}}
     18     {{/is_object}}
     19     {{?description}}
     20     <dd>{{{description}}}</dd>
     21     {{/description}}
     22     {{?properties}}
     23       {{+partials.type_item title:strings.properties
     24                             display_name:display_name
     25                             items:properties
     26                             item_partial:partials.parameter_full}}
     27     {{/properties}}
     28     {{?functions}}
     29       {{+partials.type_item title:strings.methods
     30                             display_name:display_name
     31                             items:functions
     32                             item_partial:partials.function}}
     33     {{/functions}}
     34     {{?events}}
     35       {{+partials.type_item title:strings.events
     36                             display_name:display_name
     37                             items:events
     38                             item_partial:partials.event}}
     39     {{/events}}
     40   </div>
     41 </div>
     42