We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
implements
1 parent e660251 commit f564d39Copy full SHA for f564d39
reference/_components/DocBlockSubtitleClass.tsx
@@ -7,12 +7,12 @@ export default function (
7
<>
8
{subtitle.implements && (
9
<div>
10
- <span className="type">implements</span>
+ <span className="type">implements</span>{" "}
11
{subtitle.implements.map((impl, i) => (
12
13
{/*typedef rendering*/}
14
<span dangerouslySetInnerHTML={{ __html: impl }} />
15
- {i !== (subtitle.implements.length - 1) && <span>,</span>}
+ {i !== (subtitle.implements.length - 1) && <span>,{" "}</span>}
16
</>
17
))}
18
</div>
0 commit comments