@marko/language-tools 2.5.32 → 2.5.33
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 -1
- package/package.json +2 -2
package/marko.internal.d.ts
CHANGED
|
@@ -170,7 +170,10 @@ declare global {
|
|
|
170
170
|
export function renderDynamicTag<Name>(tag: Name): DynamicRenderer<Name>;
|
|
171
171
|
|
|
172
172
|
export function returnTag<
|
|
173
|
-
Input extends {
|
|
173
|
+
Input extends {
|
|
174
|
+
value: unknown;
|
|
175
|
+
valueChange?: ((value: any) => void) | false | null;
|
|
176
|
+
},
|
|
174
177
|
>(input: Input): Input;
|
|
175
178
|
|
|
176
179
|
export function forOfTag<
|
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.33",
|
|
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"
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"@marko/compiler": "^5.39.33",
|
|
18
18
|
"@types/babel__code-frame": "^7.0.6",
|
|
19
19
|
"@typescript/vfs": "^1.6.1",
|
|
20
|
-
"marko": "^5.37.
|
|
20
|
+
"marko": "^5.37.47",
|
|
21
21
|
"mitata": "^1.0.34",
|
|
22
22
|
"tsx": "^4.20.4"
|
|
23
23
|
},
|