@@ -220,8 +220,7 @@ function renderChild(
220220 < h5 id = { anchorTargetIfPresent ( context , child ) } >
221221 { ! ! child . flags . isRest && < span class = "tsd-signature-symbol" > ...</ span > }
222222 < span class = { getKindClass ( child ) } > { child . name } </ span >
223- < span class = "tsd-signature-symbol" > { ! ! child . flags . isOptional && "?" } :</ span >
224- function
223+ < span class = "tsd-signature-symbol" > { ! ! child . flags . isOptional && "?" } :</ span > function
225224 </ h5 >
226225
227226 { context . memberSignatures ( child ) }
@@ -272,10 +271,9 @@ function renderChild(
272271 < li class = "tsd-parameter" >
273272 < h5 id = { anchorTargetIfPresent ( context , child ) } >
274273 { context . reflectionFlags ( child . getSignature ) }
275- < span class = "tsd-signature-keyword" > get</ span >
274+ < span class = "tsd-signature-keyword" > get</ span > { " " }
276275 < span class = { getKindClass ( child ) } > { child . name } </ span >
277- < span class = "tsd-signature-symbol" > ():</ span >
278- { context . type ( child . getSignature . type ) }
276+ < span class = "tsd-signature-symbol" > ():</ span > { context . type ( child . getSignature . type ) }
279277 </ h5 >
280278
281279 { highlightOrComment ( child . getSignature ) }
@@ -285,18 +283,16 @@ function renderChild(
285283 < li class = "tsd-parameter" >
286284 < h5 id = { ! child . getSignature ? anchorTargetIfPresent ( context , child ) : undefined } >
287285 { context . reflectionFlags ( child . setSignature ) }
288- < span class = "tsd-signature-keyword" > set</ span >
286+ < span class = "tsd-signature-keyword" > set</ span > { " " }
289287 < span class = { getKindClass ( child ) } > { child . name } </ span >
290288 < span class = "tsd-signature-symbol" > (</ span >
291289 { child . setSignature . parameters ?. map ( ( item ) => (
292290 < >
293291 { item . name }
294- < span class = "tsd-signature-symbol" > :</ span >
295- { context . type ( item . type ) }
292+ < span class = "tsd-signature-symbol" > :</ span > { context . type ( item . type ) }
296293 </ >
297294 ) ) }
298- < span class = "tsd-signature-symbol" > ):</ span >
299- { context . type ( child . setSignature . type ) }
295+ < span class = "tsd-signature-symbol" > ):</ span > { context . type ( child . setSignature . type ) }
300296 </ h5 >
301297
302298 { highlightOrComment ( child . setSignature ) }
@@ -310,7 +306,12 @@ function renderIndexSignature(context: DefaultThemeRenderContext, index: Signatu
310306 return (
311307 < li class = "tsd-parameter-index-signature" >
312308 < h5 >
313- { index . flags . isReadonly && < span class = "tsd-signature-keyword" > readonly</ span > }
309+ { index . flags . isReadonly && (
310+ < >
311+ < span class = "tsd-signature-keyword" > readonly</ span >
312+ { " " }
313+ </ >
314+ ) }
314315 < span class = "tsd-signature-symbol" > [</ span >
315316 { index . parameters ! . map ( ( item ) => (
316317 < >
0 commit comments