aboutsummaryrefslogtreecommitdiff
path: root/node_modules/typedoc-default-themes/bin/minimal/partials/member.signature.title.hbs
blob: efe9bcc4c8add499047ec17392ad57e47916e66e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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}}