aboutsummaryrefslogtreecommitdiff
path: root/node_modules/typedoc-default-themes/bin/default/partials/parameter.hbs
blob: eb06dc07ddfe4538370a9fc6b33f8dde696a30f2 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<ul class="tsd-parameters">
    {{#if signatures}}
        <li class="tsd-parameter-siganture">
            <ul class="tsd-signatures {{cssClasses}}">
                {{#each signatures}}
                    <li class="tsd-signature tsd-kind-icon">{{> member.signature.title hideName=true }}</li>
                {{/each}}
            </ul>

            <ul class="tsd-descriptions">
                {{#each signatures}}
                    <li class="tsd-description">{{> member.signature.body hideSources=true }}</li>
                {{/each}}
            </ul>
        </li>
    {{/if}}
    {{#if indexSignature}}
        <li class="tsd-parameter-index-signature">
            <h5>{{#compact}}
                <span class="tsd-signature-symbol">[</span>
                {{#each indexSignature.parameters}}
                    {{#if flags.isRest}}<span class="tsd-signature-symbol">...</span>{{/if}}{{name}}:&nbsp;{{#with type}}{{>type}}{{/with}}
                {{/each}}
                <span class="tsd-signature-symbol">]:&nbsp;</span>
                {{#with indexSignature.type}}{{>type}}{{/with}}
            {{/compact}}</h5>

            {{#with indexSignature}}
                {{> comment}}
            {{/with}}

            {{#if indexSignature.type.declaration}}
                {{#with indexSignature.type.declaration}}
                    {{> parameter}}
                {{/with}}
            {{/if}}
        </li>
    {{/if}}
    {{#each children}}
        <li class="tsd-parameter">
            {{#if signatures}}
                <h5>{{#compact}}
                    {{#if flags.isRest}}<span class="tsd-signature-symbol">...</span>{{/if}}
                    {{{wbr name}}}
                    <span class="tsd-signature-symbol">
                        {{#if isOptional}}?{{/if}}
                        :&nbsp;
                    </span>
                    function
                {{/compact}}</h5>

                {{> member.signatures}}
            {{else}}
                <h5>{{#compact}}
                    {{#each flags}}
                        <span class="tsd-flag ts-flag{{this}}">{{this}}</span>&nbsp;
                    {{/each}}
                    {{#if flags.isRest}}<span class="tsd-signature-symbol">...</span>{{/if}}
                    {{{wbr name}}}
                    <span class="tsd-signature-symbol">
                        {{#if flags.isOptional}}?{{/if}}
                        :&nbsp;
                    </span>
                    {{#with type}}{{>type}}{{/with}}
                {{/compact}}</h5>

                {{> comment}}

                {{#if children}}
                    {{> parameter}}
                {{/if}}

                {{#if type.declaration}}
                    {{#with type.declaration}}
                        {{> parameter}}
                    {{/with}}
                {{/if}}
            {{/if}}
        </li>
    {{/each}}
</ul>