aboutsummaryrefslogtreecommitdiff
path: root/node_modules/typedoc-default-themes/bin/default/partials/toc.root.hbs
blob: cba0d66370514338d5de9a01e0c117da38185d03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{#if isInPath}}
    </ul>
    <ul class="current">
{{/if}}
<li class="{{#if isInPath}}current{{/if}} {{cssClasses}}">
    <a href="{{relativeURL url}}" class="tsd-kind-icon">{{{wbr title}}}</a>
    {{#if children}}
        <ul>
            {{#each children}}
                {{> toc}}
            {{/each}}
        </ul>
    {{/if}}
</li>
{{#if isInPath}}
    </ul>
    <ul class="after-current">
{{/if}}