@marko/language-tools 2.5.6 → 2.5.7
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 +8 -6
- package/package.json +1 -1
package/marko.internal.d.ts
CHANGED
|
@@ -347,14 +347,16 @@ declare global {
|
|
|
347
347
|
? NativeTagRenderer<Name>
|
|
348
348
|
: [Name] extends [AnyMarkoBody]
|
|
349
349
|
? BodyRenderer<Name>
|
|
350
|
-
: [Name] extends [
|
|
351
|
-
|
|
352
|
-
|
|
350
|
+
: [Name] extends [
|
|
351
|
+
{
|
|
352
|
+
[BodyContentKey in DefaultBodyContentKey]?: AnyMarkoBody;
|
|
353
|
+
},
|
|
354
|
+
]
|
|
355
|
+
? [Name[BodyContentKey]] extends [AnyMarkoBody]
|
|
356
|
+
? BodyRenderer<Name[BodyContentKey]>
|
|
353
357
|
: BaseRenderer<
|
|
354
358
|
BodyContentInput<
|
|
355
|
-
BodyParameters<
|
|
356
|
-
Exclude<Name[DefaultBodyContentKey], void>
|
|
357
|
-
>
|
|
359
|
+
BodyParameters<Exclude<Name[BodyContentKey], void>>
|
|
358
360
|
>
|
|
359
361
|
>
|
|
360
362
|
: DefaultRenderer;
|
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.7",
|
|
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"
|