55 lines
484 B
Handlebars
55 lines
484 B
Handlebars
|
{{#if implementationOf}}
|
||
|
|
||
|
#### Implementation of
|
||
|
|
||
|
{{#with implementationOf}}
|
||
|
|
||
|
{{typeAndParent}}
|
||
|
|
||
|
{{/with}}
|
||
|
|
||
|
{{/if}}
|
||
|
|
||
|
{{#if inheritedFrom}}
|
||
|
|
||
|
#### Inherited from
|
||
|
|
||
|
{{#with inheritedFrom}}
|
||
|
|
||
|
{{{typeAndParent}}}
|
||
|
|
||
|
{{/with}}
|
||
|
|
||
|
{{/if}}
|
||
|
|
||
|
{{#if overwrites}}
|
||
|
|
||
|
#### Overrides
|
||
|
|
||
|
{{#with overwrites}}
|
||
|
|
||
|
{{typeAndParent}}
|
||
|
|
||
|
{{/with}}
|
||
|
|
||
|
{{/if}}
|
||
|
|
||
|
{{#if sources}}
|
||
|
|
||
|
#### Defined in
|
||
|
|
||
|
{{#each sources}}
|
||
|
|
||
|
{{#if url}}
|
||
|
|
||
|
[{{fileName}}:{{line}}]({{url}})
|
||
|
|
||
|
{{else}}
|
||
|
|
||
|
{{fileName}}:{{line}}
|
||
|
|
||
|
{{/if}}
|
||
|
|
||
|
{{/each}}
|
||
|
|
||
|
{{/if}}
|