parameters.tmpl.partial 732 B

12345678910111213141516171819202122232425262728
  1. {{!Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.}}
  2. {{#properties.0}}
  3. <h6 class="parameters">Properties</h6>
  4. <table class="table table-bordered table-striped table-condensed">
  5. <thead>
  6. <tr>
  7. <th>{{__global.type}}</th>
  8. <th>{{__global.name}}</th>
  9. <th>{{__global.description}}</th>
  10. </tr>
  11. </thead>
  12. <tbody>
  13. {{/properties.0}}
  14. {{#properties}}
  15. <tr>
  16. <td>{{{type.specName.0.value}}}</td>
  17. <td><em class="text-break">{{{id}}}</em></td>
  18. <td>
  19. {{{description}}}
  20. {{>partials/parameters}}
  21. </td>
  22. </tr>
  23. {{/properties}}
  24. {{#properties.0}}
  25. </tbody>
  26. </table>
  27. {{/properties.0}}