aboutsummaryrefslogtreecommitdiff
path: root/node_modules/typedoc-default-themes/bin/default/partials/type.hbs
blob: 93f8d99bbe919f74835f019408deb2b569487216 (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
82
83
{{#if this}}
    {{#if reflection}}
        {{#compact}}
            <a href="{{relativeURL reflection.url}}" class="tsd-signature-type">
                {{reflection.name}}
            </a>
            {{#if typeArguments}}
                <span class="tsd-signature-symbol">&lt;</span>

                {{#each typeArguments}}
                    {{#if @index}}
                        <span class="tsd-signature-symbol">, </span>
                    {{/if}}{{> type}}
                {{/each}}

                <span class="tsd-signature-symbol">&gt;</span>
            {{/if}}
        {{/compact}}
    {{else}}
        {{#if elementType}}
            {{#with elementType}}
                {{#compact}}
                    {{#if types}}
                        <span class="tsd-signature-symbol">(</span>
                    {{/if}}
                    {{> type}}
                    {{#if types}}
                        <span class="tsd-signature-symbol">)</span>
                    {{/if}}<span class="tsd-signature-symbol">[]</span>
                {{/compact}}
            {{/with}}
        {{else}}
            {{#if types}}
                {{#each types}}
                    {{#if @index}}
                        <span class="tsd-signature-symbol"> {{#ifCond ../type '==' 'intersection'}}&amp;{{else}}|{{/ifCond}} </span>
                    {{/if}}{{> type}}
                {{/each}}
            {{else}}
                {{#if elements}}
                    {{#compact}}
                        <span class="tsd-signature-symbol">[</span>

                        {{#each elements}}
                            {{#if @index}}
                                <span class="tsd-signature-symbol">, </span>
                            {{/if}}{{> type}}
                        {{/each}}

                        <span class="tsd-signature-symbol">]</span>
                    {{/compact}}
                {{else}}
                    {{#compact}}
                        <span class="tsd-signature-type">
                            {{#if name}}
                                {{name}}
                            {{else}}
                                {{#if value}}
                                    "{{value}}"
                                {{else}}
                                    {{this}}
                                {{/if}}
                            {{/if}}
                        </span>
                        {{#if typeArguments}}
                            <span class="tsd-signature-symbol">&lt;</span>

                            {{#each typeArguments}}
                                {{#if @index}}
                                    <span class="tsd-signature-symbol">, </span>
                                {{/if}}{{> type}}
                            {{/each}}

                            <span class="tsd-signature-symbol">&gt;</span>
                        {{/if}}
                    {{/compact}}
                {{/if}}
            {{/if}}
        {{/if}}
    {{/if}}
{{else}}
    <span class="tsd-signature-type">void</span>
{{/if}}