@marko/language-tools 2.5.8 → 2.5.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/marko.internal.d.ts +4 -6
- package/package.json +1 -1
package/marko.internal.d.ts
CHANGED
|
@@ -351,15 +351,13 @@ declare global {
|
|
|
351
351
|
? BodyRenderer<Name>
|
|
352
352
|
: [Name] extends [
|
|
353
353
|
{
|
|
354
|
-
[BodyContentKey in DefaultBodyContentKey]?:
|
|
354
|
+
[BodyContentKey in DefaultBodyContentKey]?: infer BodyValue;
|
|
355
355
|
},
|
|
356
356
|
]
|
|
357
|
-
? [
|
|
358
|
-
? BodyRenderer<
|
|
357
|
+
? [BodyValue] extends [AnyMarkoBody]
|
|
358
|
+
? BodyRenderer<BodyValue>
|
|
359
359
|
: BaseRenderer<
|
|
360
|
-
BodyContentInput<
|
|
361
|
-
BodyParameters<Exclude<Name[BodyContentKey], void>>
|
|
362
|
-
>
|
|
360
|
+
BodyContentInput<BodyParameters<Exclude<BodyValue, void>>>
|
|
363
361
|
>
|
|
364
362
|
: DefaultRenderer;
|
|
365
363
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@marko/language-tools",
|
|
3
3
|
"description": "Marko Language Tools",
|
|
4
|
-
"version": "2.5.
|
|
4
|
+
"version": "2.5.9",
|
|
5
5
|
"bugs": "https://github.com/marko-js/language-server/issues/new?template=Bug_report.md",
|
|
6
6
|
"peerDependencies": {
|
|
7
7
|
"@marko/compiler": "^5.28.4"
|