aboutsummaryrefslogtreecommitdiff
path: root/node_modules/typedoc-default-themes/bin/default/partials/hierarchy.hbs
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/typedoc-default-themes/bin/default/partials/hierarchy.hbs')
-rw-r--r--node_modules/typedoc-default-themes/bin/default/partials/hierarchy.hbs17
1 files changed, 17 insertions, 0 deletions
diff --git a/node_modules/typedoc-default-themes/bin/default/partials/hierarchy.hbs b/node_modules/typedoc-default-themes/bin/default/partials/hierarchy.hbs
new file mode 100644
index 000000000..9a54d5109
--- /dev/null
+++ b/node_modules/typedoc-default-themes/bin/default/partials/hierarchy.hbs
@@ -0,0 +1,17 @@
+<ul class="tsd-hierarchy">
+ {{#each types}}
+ <li>
+ {{#if ../isTarget}}
+ <span class="target">{{this}}</span>
+ {{else}}
+ {{> type}}
+ {{/if}}
+
+ {{#if @last}}
+ {{#with ../next}}
+ {{> hierarchy}}
+ {{/with}}
+ {{/if}}
+ </li>
+ {{/each}}
+</ul>