@@ -42,7 +42,8 @@ export const parameter = (context: DefaultThemeRenderContext, props: Declaration
4242 < span class = "tsd-signature-symbol" > { "]: " } </ span >
4343 { context . type ( props . indexSignature . type ) }
4444 </ h5 >
45- { context . comment ( props . indexSignature ) }
45+ { context . commentSummary ( props . indexSignature ) }
46+ { context . commentTags ( props . indexSignature ) }
4647 { props . indexSignature . type instanceof ReflectionType &&
4748 context . parameter ( props . indexSignature . type . declaration ) }
4849 </ li >
@@ -75,7 +76,8 @@ export const parameter = (context: DefaultThemeRenderContext, props: Declaration
7576 </ span >
7677 { context . type ( item . type ) }
7778 </ h5 >
78- { context . comment ( item ) }
79+ { context . commentSummary ( item ) }
80+ { context . commentTags ( item ) }
7981 { ! ! item . children && context . parameter ( item ) }
8082 { item . type instanceof ReflectionType && context . parameter ( item . type . declaration ) }
8183 </ li >
@@ -95,7 +97,8 @@ export const parameter = (context: DefaultThemeRenderContext, props: Declaration
9597 { context . type ( item . getSignature . type ) }
9698 </ h5 >
9799
98- { context . comment ( item . getSignature ) }
100+ { context . commentSummary ( item . getSignature ) }
101+ { context . commentTags ( item . getSignature ) }
99102 </ li >
100103 </ >
101104 ) }
@@ -119,7 +122,8 @@ export const parameter = (context: DefaultThemeRenderContext, props: Declaration
119122 { context . type ( item . setSignature . type ) }
120123 </ h5 >
121124
122- { context . comment ( item . setSignature ) }
125+ { context . commentSummary ( item . setSignature ) }
126+ { context . commentTags ( item . setSignature ) }
123127 </ li >
124128 </ >
125129 ) }
0 commit comments