aboutsummaryrefslogtreecommitdiff
path: root/node_modules/typedoc-default-themes/bin/minimal/partials/member.hbs
blob: ca6a2d5cadca9bfa392c62f41f98d8ad435d9186 (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
<section class="tsd-panel tsd-member {{cssClasses}}">
    <a name="{{anchor}}" class="tsd-anchor"></a>
    {{#if name}}
        <h3>{{#each flags}}<span class="tsd-flag ts-flag{{this}}">{{this}}</span> {{/each}}{{{wbr name}}}</h3>
    {{/if}}

    {{#if signatures}}
        {{> member.signatures}}
    {{else}}
        {{> member.declaration}}
    {{/if}}

    {{#unless isContainer}}
        {{#each groups}}
            {{#each children}}
                {{#unless hasOwnDocument}}
                    {{> member}}
                {{/unless}}
            {{/each}}
        {{/each}}
    {{/unless}}
</section>

{{#if isContainer}}
    {{> index}}
    {{> members}}
{{/if}}