File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed
src/lib/output/themes/default/partials Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change 22
33### Bug Fixes
44
5+ - Fixed display of object types containing methods, #1788 .
56- Fixed conversion of intrinsic string mapping types when converting without a type node, #2079 .
67
78## v0.23.17 (2022-10-18)
Original file line number Diff line number Diff line change @@ -338,6 +338,22 @@ const typeRenderers: {
338338 continue ;
339339 }
340340
341+ if ( item . signatures ) {
342+ for ( const sig of item . signatures ) {
343+ members . push (
344+ < >
345+ { item . name }
346+ { item . flags . isOptional && < span class = "tsd-signature-symbol" > ?</ span > }
347+ { context . memberSignatureTitle ( sig , {
348+ hideName : true ,
349+ arrowStyle : false ,
350+ } ) }
351+ </ >
352+ ) ;
353+ }
354+ continue ;
355+ }
356+
341357 members . push (
342358 < >
343359 { item . name }
You can’t perform that action at this time.
0 commit comments