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.
1 parent a443269 commit 7e2871dCopy full SHA for 7e2871d
CHANGELOG.md
@@ -3,6 +3,7 @@
3
### Bug Fixes
4
5
- Even more contrast fixes, #2248.
6
+- Fix semantic highlighting for predicate type's parameter references, #2249.
7
8
## v0.24.4 (2023-04-16)
9
src/lib/output/themes/default/partials/type.tsx
@@ -242,7 +242,7 @@ const typeRenderers: {
242
return (
243
<>
244
{!!type.asserts && <span class="tsd-signature-symbol">asserts </span>}
245
- <span class="tsd-signature-type">{type.name}</span>
+ <span class="tsd-kind-parameter">{type.name}</span>
246
{!!type.targetType && (
247
248
<span class="tsd-signature-symbol"> is </span>
0 commit comments