aboutsummaryrefslogtreecommitdiff
path: root/node_modules/typedoc-default-themes/bin/default/partials/member.signature.title.hbs
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/typedoc-default-themes/bin/default/partials/member.signature.title.hbs')
-rw-r--r--node_modules/typedoc-default-themes/bin/default/partials/member.signature.title.hbs28
1 files changed, 28 insertions, 0 deletions
diff --git a/node_modules/typedoc-default-themes/bin/default/partials/member.signature.title.hbs b/node_modules/typedoc-default-themes/bin/default/partials/member.signature.title.hbs
new file mode 100644
index 000000000..efe9bcc4c
--- /dev/null
+++ b/node_modules/typedoc-default-themes/bin/default/partials/member.signature.title.hbs
@@ -0,0 +1,28 @@
+{{#compact}}
+ {{#unless hideName}}{{{wbr name}}}{{/unless}}
+ {{#if typeParameters}}
+ <
+ {{#each typeParameters}}
+ {{#if @index}}, {{/if}}
+ {{name}}
+ {{/each}}
+ >
+ {{/if}}
+ <span class="tsd-signature-symbol">(</span>
+ {{#each parameters}}
+ {{#if @index}},&nbsp;{{/if}}
+ {{#if flags.isRest}}<span class="tsd-signature-symbol">...</span>{{/if}}
+ {{name}}
+ <span class="tsd-signature-symbol">
+ {{#if flags.isOptional}}?{{/if}}
+ {{#if defaultValue}}?{{/if}}
+ :&nbsp;
+ </span>
+ {{#with type}}{{>type}}{{/with}}
+ {{/each}}
+ <span class="tsd-signature-symbol">)</span>
+ {{#if type}}
+ <span class="tsd-signature-symbol">:&nbsp;</span>
+ {{#with type}}{{>type}}{{/with}}
+ {{/if}}
+{{/compact}} \ No newline at end of file