member.sources.hbs 747 B

123456789101112131415161718192021222324
  1. <aside class="tsd-sources">
  2. {{#if implementationOf}}
  3. <p>Implementation of {{#with implementationOf}}{{> typeAndParent}}{{/with}}</p>
  4. {{/if}}
  5. {{#if inheritedFrom}}
  6. <p>Inherited from {{#with inheritedFrom}}{{> typeAndParent}}{{/with}}</p>
  7. {{/if}}
  8. {{#if overwrites}}
  9. <p>Overwrites {{#with overwrites}}{{> typeAndParent}}{{/with}}</p>
  10. {{/if}}
  11. <!--
  12. {{#if sources}}
  13. <ul>
  14. {{#each sources}}
  15. {{#if url}}
  16. <li>Defined in <a href="{{url}}">{{fileName}}:{{line}}</a></li>
  17. {{else}}
  18. <li>Defined in {{fileName}}:{{line}}</li>
  19. {{/if}}
  20. {{/each}}
  21. </ul>
  22. {{/if}}
  23. -->
  24. </aside>