aboutsummaryrefslogtreecommitdiff
path: root/node_modules/typedoc-default-themes/bin/minimal/partials/typeAndParent.hbs
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/typedoc-default-themes/bin/minimal/partials/typeAndParent.hbs')
-rw-r--r--node_modules/typedoc-default-themes/bin/minimal/partials/typeAndParent.hbs42
1 files changed, 42 insertions, 0 deletions
diff --git a/node_modules/typedoc-default-themes/bin/minimal/partials/typeAndParent.hbs b/node_modules/typedoc-default-themes/bin/minimal/partials/typeAndParent.hbs
new file mode 100644
index 000000000..02b25f557
--- /dev/null
+++ b/node_modules/typedoc-default-themes/bin/minimal/partials/typeAndParent.hbs
@@ -0,0 +1,42 @@
+{{#compact}}
+ {{#if this}}
+ {{#if elementType}}
+ {{#with elementType}}
+ {{> typeAndParent}}
+ {{/with}}
+ []
+ {{else}}
+ {{#if reflection}}
+ {{#ifSignature reflection}}
+ {{#if reflection.parent.parent.url}}
+ <a href="{{relativeURL reflection.parent.parent.url}}">{{reflection.parent.parent.name}}</a>
+ {{else}}
+ {{reflection.parent.parent.name}}
+ {{/if}}
+ .
+ {{#if reflection.parent.url}}
+ <a href="{{relativeURL reflection.parent.url}}">{{reflection.parent.name}}</a>
+ {{else}}
+ {{reflection.parent.name}}
+ {{/if}}
+ {{else}}
+ {{#if reflection.parent.url}}
+ <a href="{{relativeURL reflection.parent.url}}">{{reflection.parent.name}}</a>
+ {{else}}
+ {{reflection.parent.name}}
+ {{/if}}
+ .
+ {{#if reflection.url}}
+ <a href="{{relativeURL reflection.url}}">{{reflection.name}}</a>
+ {{else}}
+ {{reflection.name}}
+ {{/if}}
+ {{/ifSignature}}
+ {{else}}
+ {{this}}
+ {{/if}}
+ {{/if}}
+ {{else}}
+ void
+ {{/if}}
+{{/compact}} \ No newline at end of file