@lytjs/renderer 4.1.0 → 4.2.0
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/README.md +204 -0
- package/package.json +3 -3
- package/dist/tsconfig.tsbuildinfo +0 -1
package/README.md
ADDED
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
# @lytjs/renderer
|
|
2
|
+
|
|
3
|
+
Lyt.js 渲染器 - 提供 DOM、SSR、Vapor 等多种渲染模式。
|
|
4
|
+
|
|
5
|
+
## 安装
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @lytjs/renderer
|
|
9
|
+
|
|
10
|
+
# 或使用 pnpm
|
|
11
|
+
pnpm add @lytjs/renderer
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## 特性
|
|
15
|
+
|
|
16
|
+
- 🌐 DOM 渲染器
|
|
17
|
+
- 🚀 SSR 渲染器
|
|
18
|
+
- ⚡ Vapor 无虚拟 DOM 渲染器
|
|
19
|
+
- 🔌 可扩展的渲染器架构
|
|
20
|
+
- 🎯 零运行时依赖
|
|
21
|
+
|
|
22
|
+
## 快速开始
|
|
23
|
+
|
|
24
|
+
### DOM 渲染
|
|
25
|
+
|
|
26
|
+
```javascript
|
|
27
|
+
import { createApp, defineComponent } from '@lytjs/core';
|
|
28
|
+
import { render } from '@lytjs/renderer';
|
|
29
|
+
|
|
30
|
+
const App = defineComponent({
|
|
31
|
+
setup() {
|
|
32
|
+
return { count: 0 };
|
|
33
|
+
},
|
|
34
|
+
template: `
|
|
35
|
+
<div>
|
|
36
|
+
<h1>{{ count }}</h1>
|
|
37
|
+
<button @click="count++">Increment</button>
|
|
38
|
+
</div>
|
|
39
|
+
`
|
|
40
|
+
});
|
|
41
|
+
|
|
42
|
+
const app = createApp(App);
|
|
43
|
+
app.mount('#app');
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
### SSR 渲染
|
|
47
|
+
|
|
48
|
+
```javascript
|
|
49
|
+
import { createSSRApp, defineComponent } from '@lytjs/core';
|
|
50
|
+
import { renderToString } from '@lytjs/renderer/ssr';
|
|
51
|
+
|
|
52
|
+
const App = defineComponent({
|
|
53
|
+
template: '<div>Hello SSR!</div>'
|
|
54
|
+
});
|
|
55
|
+
|
|
56
|
+
const app = createSSRApp(App);
|
|
57
|
+
const html = await renderToString(app);
|
|
58
|
+
console.log(html);
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
### Vapor 模式
|
|
62
|
+
|
|
63
|
+
Vapor 是无虚拟 DOM 的编译优化模式,性能更优:
|
|
64
|
+
|
|
65
|
+
```javascript
|
|
66
|
+
import { defineVaporComponent } from '@lytjs/renderer/vapor';
|
|
67
|
+
|
|
68
|
+
const App = defineVaporComponent({
|
|
69
|
+
setup() {
|
|
70
|
+
const count = signal(0);
|
|
71
|
+
return { count };
|
|
72
|
+
},
|
|
73
|
+
template: `
|
|
74
|
+
<div>
|
|
75
|
+
<h1><span bind:text="count"></span></h1>
|
|
76
|
+
<button bind:onclick="() => count.set(count() + 1)">
|
|
77
|
+
Increment
|
|
78
|
+
</button>
|
|
79
|
+
</div>
|
|
80
|
+
`
|
|
81
|
+
});
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
## API 参考
|
|
85
|
+
|
|
86
|
+
### DOM 渲染器
|
|
87
|
+
|
|
88
|
+
| API | 说明 |
|
|
89
|
+
|------|------|
|
|
90
|
+
| `render(vnode, container)` | 渲染 VNode 到容器 |
|
|
91
|
+
| `hydrate(vnode, container)` | 激活 SSR 渲染的内容 |
|
|
92
|
+
| `createRenderer(options)` | 创建自定义渲染器 |
|
|
93
|
+
|
|
94
|
+
### SSR 渲染器
|
|
95
|
+
|
|
96
|
+
| API | 说明 |
|
|
97
|
+
|------|------|
|
|
98
|
+
| `renderToString(app)` | 渲染应用到字符串 |
|
|
99
|
+
| `renderToNodeStream(app)` | 渲染到 Node.js 流 |
|
|
100
|
+
| `renderToWebStream(app)` | 渲染到 Web Stream |
|
|
101
|
+
|
|
102
|
+
### Vapor 渲染器
|
|
103
|
+
|
|
104
|
+
| API | 说明 |
|
|
105
|
+
|------|------|
|
|
106
|
+
| `defineVaporComponent(options)` | 定义 Vapor 组件 |
|
|
107
|
+
| `createVaporApp(rootComponent)` | 创建 Vapor 应用 |
|
|
108
|
+
|
|
109
|
+
## 渲染器架构
|
|
110
|
+
|
|
111
|
+
### 自定义渲染器
|
|
112
|
+
|
|
113
|
+
```javascript
|
|
114
|
+
import { createRenderer } from '@lytjs/renderer';
|
|
115
|
+
|
|
116
|
+
const { render, createApp } = createRenderer({
|
|
117
|
+
// 节点操作
|
|
118
|
+
insert: (child, parent, anchor) => { /* 自定义 */ },
|
|
119
|
+
remove: (child) => { /* 自定义 */ },
|
|
120
|
+
createElement: (tag) => { /* 自定义 */ },
|
|
121
|
+
createText: (text) => { /* 自定义 */ },
|
|
122
|
+
setElementText: (el, text) => { /* 自定义 */ },
|
|
123
|
+
patchProp: (el, key, prevValue, nextValue) => { /* 自定义 */ },
|
|
124
|
+
// ...其他钩子
|
|
125
|
+
});
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
## Vapor 模式
|
|
129
|
+
|
|
130
|
+
Vapor 模式通过编译时分析直接生成 DOM 操作代码,绕过虚拟 DOM:
|
|
131
|
+
|
|
132
|
+
```javascript
|
|
133
|
+
// Vapor 编译输出示例
|
|
134
|
+
function render() {
|
|
135
|
+
const el1 = document.createElement('div');
|
|
136
|
+
const el2 = document.createElement('h1');
|
|
137
|
+
const textNode = document.createTextNode(count());
|
|
138
|
+
el2.appendChild(textNode);
|
|
139
|
+
el1.appendChild(el2);
|
|
140
|
+
|
|
141
|
+
// 响应式更新
|
|
142
|
+
effect(() => {
|
|
143
|
+
textNode.data = count();
|
|
144
|
+
});
|
|
145
|
+
|
|
146
|
+
return el1;
|
|
147
|
+
}
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
## 示例
|
|
151
|
+
|
|
152
|
+
### 自定义渲染器
|
|
153
|
+
|
|
154
|
+
```javascript
|
|
155
|
+
import { createRenderer } from '@lytjs/renderer';
|
|
156
|
+
|
|
157
|
+
// Canvas 渲染器示例
|
|
158
|
+
const canvasRenderer = createRenderer({
|
|
159
|
+
createElement(tag) {
|
|
160
|
+
return { type: tag };
|
|
161
|
+
},
|
|
162
|
+
insert(child, parent) {
|
|
163
|
+
parent.children = parent.children || [];
|
|
164
|
+
parent.children.push(child);
|
|
165
|
+
}
|
|
166
|
+
// ...其他实现
|
|
167
|
+
});
|
|
168
|
+
```
|
|
169
|
+
|
|
170
|
+
### 流式 SSR
|
|
171
|
+
|
|
172
|
+
```javascript
|
|
173
|
+
import { createSSRApp } from '@lytjs/core';
|
|
174
|
+
import { renderToNodeStream } from '@lytjs/renderer/ssr';
|
|
175
|
+
import { createServer } from 'http';
|
|
176
|
+
|
|
177
|
+
const App = defineComponent({ /* ... */ });
|
|
178
|
+
|
|
179
|
+
createServer(async (req, res) => {
|
|
180
|
+
const app = createSSRApp(App);
|
|
181
|
+
const stream = renderToNodeStream(app);
|
|
182
|
+
res.setHeader('Content-Type', 'text/html');
|
|
183
|
+
stream.pipe(res);
|
|
184
|
+
}).listen(3000);
|
|
185
|
+
```
|
|
186
|
+
|
|
187
|
+
## 性能
|
|
188
|
+
|
|
189
|
+
- 体积:5.00 KB (ESM gzip)
|
|
190
|
+
- 零运行时依赖
|
|
191
|
+
- Vapor 模式性能接近原生 JS
|
|
192
|
+
- SSR 支持流式渲染
|
|
193
|
+
|
|
194
|
+
## 兼容性
|
|
195
|
+
|
|
196
|
+
- Node.js >= 18.0.0
|
|
197
|
+
- Chrome 64+
|
|
198
|
+
- Firefox 63+
|
|
199
|
+
- Safari 12+
|
|
200
|
+
- Edge 79+
|
|
201
|
+
|
|
202
|
+
## License
|
|
203
|
+
|
|
204
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lytjs/renderer",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.2.0",
|
|
4
4
|
"description": "Lyt.js 渲染器 - 多平台渲染抽象层(DOM/SSR/Native/MiniApp)",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -68,8 +68,8 @@
|
|
|
68
68
|
"ssr"
|
|
69
69
|
],
|
|
70
70
|
"dependencies": {
|
|
71
|
-
"@lytjs/reactivity": "^4.
|
|
72
|
-
"@lytjs/vdom": "^4.
|
|
71
|
+
"@lytjs/reactivity": "^4.2.0",
|
|
72
|
+
"@lytjs/vdom": "^4.2.0"
|
|
73
73
|
},
|
|
74
74
|
"engines": {
|
|
75
75
|
"node": ">=18.0.0"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"fileNames":["../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.full.d.ts","../../vdom/dist/types/patch-flag.d.ts","../../vdom/dist/types/fragment.d.ts","../../vdom/dist/types/vnode.d.ts","../../vdom/dist/types/block.d.ts","../../vdom/dist/types/list-diff.d.ts","../../vdom/dist/types/patch.d.ts","../../vdom/dist/types/index.d.ts","../src/vnode.ts","../src/renderer-interfaces.ts","../src/props.ts","../src/mount.ts","../src/unmount.ts","../src/patch.ts","../src/create-renderer.ts","../src/dom/dom-ops.ts","../src/dom/patch-events.ts","../src/dom/patch-props.ts","../src/dom/dom-renderer.ts","../src/index.ts","../src/dom/index.ts","../src/miniapp/miniapp-renderer.ts","../src/miniapp/index.ts","../src/native/native-renderer.ts","../src/native/index.ts","../src/ssr/hydration.ts","../src/ssr/ssr-renderer.ts","../src/ssr/index.ts","../../reactivity/dist/types/signal.d.ts","../src/vapor/vapor-reactive.ts","../src/vapor/vapor-renderer.ts","../src/vapor/vapor-compiler.ts","../src/vapor/vapor-component.ts","../src/vapor/index.ts"],"fileIdsList":[[70,71,72,75,76],[72,78,79,80],[71,72,77,78,79,80,81],[79],[84],[72],[71,72,73],[71,72,77,86],[70,71,72,73,74,75],[71],[71,72,77,88,89],[71,72],[71,72,77,92,93,94,95],[92,93],[92,93,94],[91],[91,92],[66],[64,65,66,67,68,69],[66,68],[65]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"8a15b4607d9a499e2dbeed9ec0d3c0d7372c850b2d5f1fb259e8f6d41d468a84","impliedFormat":1},{"version":"26e0fe14baee4e127f4365d1ae0b276f400562e45e19e35fd2d4c296684715e6","impliedFormat":1},{"version":"d6b1eba8496bdd0eed6fc8a685768fe01b2da4a0388b5fe7df558290bffcf32f","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f57fc4404ff020bc45b9c620aff2b40f700b95fe31164024c453a5e3c163c54","impliedFormat":1},{"version":"7f57fc4404ff020bc45b9c620aff2b40f700b95fe31164024c453a5e3c163c54","impliedFormat":1},{"version":"2a2de5b9459b3fc44decd9ce6100b72f1b002ef523126c1d3d8b2a4a63d74d78","affectsGlobalScope":true,"impliedFormat":1},{"version":"f13f4b465c99041e912db5c44129a94588e1aafee35a50eab51044833f50b4ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"db9709688f82c9e5f65a119c64d835f906efe5f559d08b11642d56eb85b79357","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b25b8c874acd1a4cf8444c3617e037d444d19080ac9f634b405583fd10ce1f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be57d7c90cf1f8112ee2636a068d8fd181289f82b744160ec56a7dc158a9f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a917a49ac94cd26b754ab84e113369a75d1a47a710661d7cd25e961cc797065f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d3261badeb7843d157ef3e6f5d1427d0eeb0af0cf9df84a62cfd29fd47ac86e","affectsGlobalScope":true,"impliedFormat":1},{"version":"195daca651dde22f2167ac0d0a05e215308119a3100f5e6268e8317d05a92526","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b11e4285cd2bb164a4dc09248bdec69e9842517db4ca47c1ba913011e44ff2f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0508571a52475e245b02bc50fa1394065a0a3d05277fbf5120c3784b85651799","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f9af488f510c3015af3cc8c267a9e9d96c4dd38a1fdff0e11dc5a544711415b","affectsGlobalScope":true,"impliedFormat":1},{"version":"fc611fea8d30ea72c6bbfb599c9b4d393ce22e2f5bfef2172534781e7d138104","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},{"version":"01a30f9e8582b369075c0808df71121e6855cb06fd8d3d39511d9ebb66405205","impliedFormat":1},"4bf20511e1950980a289f48f964ca67211ffae48eeb07894333e24446786c26a","44b0a939ee93e3fec4b314960837f4216ffbc0ff019fed82dc7c7ff703e68435","18f5a60d44eea7da20d59f7c126fc4bdd87b74f1d39566cb6d8c013ed5b2bef8","cd5e1f24d3d4188bed8851372de447073ede8937fe46cd8796b7d944b3a20949","579f753950c1fbd652dc9207f7c6b70402535339a8b1ec0ad70f7af2585c6391","fc7bc379fe9ea9c7ba998f1378f3aa1bbe75c4867fa7c41c6746c3c6bc89dbef","c00d27f14678de86282e49d40f11653a65f09b3894f42bef9e37bf8c04669b10",{"version":"47e988317806ef5467d3655acf7e6c80a90061017c08d4eaf06188e40194ab3d","signature":"de20bc27fab21c2c5ca1341569040f132680b4ace695aebe17cf19d55d6a75dd"},{"version":"1477a4236b919b2ec05a15a6f2229a406f8eb59d9f274df3c0d8bb40aea5f077","signature":"371b35236cadf3a5614284d37d577ac3868e422715c926c1a5d8e9b4964d3084"},{"version":"609ef5c2adc886fb781dc449bdf6da27a638c0976b1841df0e4e0d6ff4269adc","signature":"1e5443b39993d20bbd25f1ba4d07fd9da7f3a2fe0c37536fac1deb39d815b87a"},{"version":"b17f521643a35dc76822112c425b7d06fcf365f8c2312f81b90b839380e57bd8","signature":"a0a99c14c76d89bf29edc93e96e9e5a405a3a5b9fd743a9508091b36231c02fe"},{"version":"c074beea2da3867def98e8f9aaf9de2cc107219284dbaf46a71407bb0067f765","signature":"ee321bde806a5ddb8e0d33476f29637cb90c9bb7c664c2b89dcf5f53d87e7133"},{"version":"510a44c983d3ca288370ef4ad668365e5c8db2d8d858e9139599de47daa4a56f","signature":"473a00b5bac3b46d1fd30a8cb84c1ff76ff9e6e6b8bb1502aa039ee662db6696"},{"version":"c1ed7ee4ff785e7ac2a258b547a8eb9b2135ca66193c57eb35e41d6dc08596f2","signature":"21a68a9b94108bb8ea13af27a7ca1010f6b4493ca4b4349c91b7a3eada0ab5b0"},{"version":"6574a25f47f9144ff6bf18c3e6e3b2916748934eeb667f5ad3d77163cd87622a","signature":"51356357dc2b282ba36e0942147a9de1d6379ece336fcc59635e1f5ebe5d7722"},{"version":"feebeeee7b8fdb2a3c01a7acf5eae4b88c028dde2559188b684ce6ecd3458c75","signature":"fa8ca9d1a9c2e191d194871cf9c85ab107db82c3f921fc1613da3681a49b3b4c"},{"version":"b571acf21e82b996afeb67c5f00e3e9a7dd1504147f7abb4faed361f47c87d6d","signature":"076fa2932000bdeb0bdc8e19478a8651c61934b7ebcecba4662cdbe2531694b7"},{"version":"9fdf64f538cf906a03978fa3b40770ed0a3b2248a6dae471a2e18fec822f9680","signature":"fdf11aa8433694f2f5e90835c7384a5056293f75d7e24353612cc1cdccd222c1"},{"version":"d3ebb47a86769ecd185b2ecfc325efbb71e45acd279ced6224d20d8d0dd4feac","signature":"84f7c054d973b7531378d0791e5e5949d39d09554d8582e1ca75847703f591fc"},{"version":"65ea2c291c88be40fddd4a8b511281e309dea0356ab790afe29cbd8b8b3faf0b","signature":"3b7cdc9e44f3c7b0bb5a3ee68140bafe1006946e9e089a0799cd27d227c46541"},{"version":"0bed6a7215d71437ca817c46c258554821d9b65f8493e7f3421392f6a07b871a","signature":"a96b134dfbd8608035f5b948d38851873631332663383bcdeff050ccddd2e46b"},{"version":"765727cddc5c0dded82c4c9eb3f7b4bff2f985411c486d688dc6364d98176f97","signature":"db3e1ec7228fccd88125577caf318a76026631c3863e604b1b94f6268a661c8d"},{"version":"399cdeaa8a42298608f336eecc16b0877a35dc5d288a2d6fc8b7ba43c8d173ac","signature":"2722bd2f08be8f7d9f3577d816ec1374c70502ba393972bcdf1ad03986d04b8b"},{"version":"d2f401f75546f0cfdfc6e35367a7bb34477f7e066c127200cd3b1ae39f3595e1","signature":"cc1551089f7e4e3e08b848c4ba604b2521a76fdf0fe4dbd23932bbf700c3d081"},{"version":"b109871f47ff6b323fd7f7da0a85546369639240d1a1cea1536895608449e47d","signature":"49e7ca00e44f1940cd9aad1694be3d999b05ebc9b652794fdad216084d86b22a"},{"version":"436ef20e13f673036f2fe6ea69a57aaed97a6aa2ee22271419932e1ece8b08cd","signature":"a7c02cd6b9c223de799a25c42e29ec9c9359570c990a096150355a2aa631b510"},{"version":"e00137460935472aa7b6d89e91705d78145c2dc5642e5b384182975e98ba43e1","signature":"bb7c67bd85a5bd9d7accb3253ff420f918bc8dff3b0bb54b4ad99f0ae945f76f"},"ecd41394ecea0650d670ed4cdba72fac8f219fdfa1cdcbfdcdeb79413d712d15",{"version":"954367bfcff3426abfe4468f31a21877ef1d9cac367f9f876f0f70b29d7e35ac","signature":"543010f47afe09187740b650c08aab2652661bd7df8217db358552895199d5b8"},{"version":"310bc7903d9ec5ca1760190992cc50e4822894465ff63b7d85b2efe01007c6c1","signature":"a4b4a9270775f8dcc35bbfc4f4465251b3743671aed95ba2ced4ad1933ce88c0"},{"version":"8f957b740bc87016afcfb3cfc4063754421c7aa070fec43a8bc1aabd21756e86","signature":"a3454d859c26f739524895d7c07d689c3779d85adbc300e3d336a05ea4a3e523"},{"version":"dd90daae45ebd02d21dc2520ea86cee976c49389ff0140966016798cbce120dd","signature":"84ca5f4302b35c4be80c9fab10ec255307b38ddfbd70e2e28a24c586b023223b"},{"version":"01f69b7240ce4c8c95911b30b1a5b0d7a242bd182407d69da0810f03e36ef03f","signature":"c44f5aacc7f91359246c09d86a1ec84685c264da4255cc3037abffbf5ba5f4e7"}],"root":[[71,90],[92,96]],"options":{"allowImportingTsExtensions":true,"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"exactOptionalPropertyTypes":true,"module":99,"noEmitOnError":false,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./types","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9,"useDefineForClassFields":true,"verbatimModuleSyntax":true},"referencedMap":[[77,1],[81,2],[83,3],[80,4],[82,3],[85,5],[84,6],[74,7],[87,8],[86,6],[76,9],[73,6],[72,10],[90,11],[75,12],[96,13],[94,14],[95,15],[92,16],[93,17],[67,18],[65,18],[70,19],[68,18],[69,20],[66,21]],"semanticDiagnosticsPerFile":[[74,[{"start":2321,"length":11,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'VNode | undefined' is not assignable to parameter of type 'VNode'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'VNode'.","category":1,"code":2322}]}},{"start":3078,"length":15,"messageText":"'parentComponent' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true}]],[75,[{"start":1203,"length":11,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'VNode | undefined' is not assignable to parameter of type 'VNode'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'VNode'.","category":1,"code":2322}]}}]],[76,[{"start":405,"length":7,"messageText":"'unmount' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":3850,"length":3,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":3891,"length":3,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":3977,"length":3,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | undefined' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":6054,"length":8,"messageText":"'renderer' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":6079,"length":9,"messageText":"'unmountFn' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":7174,"length":14,"messageText":"Object is possibly 'undefined'.","category":1,"code":2532},{"start":7208,"length":35,"messageText":"Object is possibly 'undefined'.","category":1,"code":2532},{"start":7276,"length":35,"messageText":"Object is possibly 'undefined'.","category":1,"code":2532},{"start":8019,"length":21,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'VNode | undefined' is not assignable to parameter of type 'VNode | null'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'VNode | null'.","category":1,"code":2322}]}},{"start":8207,"length":15,"messageText":"'parentComponent' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true}]],[77,[{"start":358,"length":18,"messageText":"'patchKeyedChildren' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":378,"length":20,"messageText":"'patchUnkeyedChildren' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":400,"length":11,"messageText":"'getSequence' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":604,"length":13,"messageText":"'createPatchFn' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":669,"length":15,"messageText":"'unmountChildren' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true}]],[78,[{"start":8025,"length":3,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":8072,"length":3,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":8596,"length":3,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | undefined' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":8691,"length":3,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | undefined' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":8961,"length":3,"messageText":"'key' is possibly 'undefined'.","category":1,"code":18048},{"start":9132,"length":3,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | undefined' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":9216,"length":3,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | undefined' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]}}]],[79,[{"start":2983,"length":4,"code":2322,"category":1,"messageText":{"messageText":"Type 'string | undefined' is not assignable to type 'string'.","category":1,"code":2322,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]},"relatedInformation":[{"start":653,"length":4,"messageText":"The expected type comes from property 'name' which is declared here on type 'ParsedEvent'","category":3,"code":6500}]},{"start":3222,"length":8,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":3254,"length":11,"code":7053,"category":1,"messageText":"Element implicitly has an 'any' type because expression of type 'any' can't be used to index type 'ParsedEvent'."},{"start":5190,"length":11,"code":7053,"category":1,"messageText":{"messageText":"Element implicitly has an 'any' type because expression of type '\"_vei\"' can't be used to index type 'Element'.","category":1,"code":7053,"next":[{"messageText":"Property '_vei' does not exist on type 'Element'.","category":1,"code":2339}]}},{"start":5237,"length":11,"code":7053,"category":1,"messageText":{"messageText":"Element implicitly has an 'any' type because expression of type '\"_vei\"' can't be used to index type 'Element'.","category":1,"code":7053,"next":[{"messageText":"Property '_vei' does not exist on type 'Element'.","category":1,"code":2339}]}}]],[84,[{"start":6789,"length":8,"code":2412,"category":1,"messageText":{"messageText":"Type 'string | undefined' is not assignable to type 'string' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the type of the target.","category":1,"code":2412,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":6830,"length":11,"code":2412,"category":1,"messageText":{"messageText":"Type 'string | undefined' is not assignable to type 'string' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the type of the target.","category":1,"code":2412,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":10418,"length":13,"code":2412,"category":1,"messageText":"Type 'undefined' is not assignable to type 'MiniAppNode' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the type of the target."},{"start":10771,"length":16,"code":2412,"category":1,"messageText":"Type 'undefined' is not assignable to type 'MiniAppNode' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the type of the target."},{"start":12518,"length":17,"code":2322,"category":1,"messageText":{"messageText":"Type 'MiniAppNode | undefined' is not assignable to type 'MiniAppNode | null'.","category":1,"code":2322,"next":[{"messageText":"Type 'undefined' is not assignable to type 'MiniAppNode | null'.","category":1,"code":2322}]}},{"start":12959,"length":9,"messageText":"'prevValue' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":17700,"length":6,"messageText":"'prefix' is possibly 'undefined'.","category":1,"code":18048},{"start":17765,"length":6,"messageText":"'prefix' is possibly 'undefined'.","category":1,"code":18048},{"start":18049,"length":6,"messageText":"'prefix' is possibly 'undefined'.","category":1,"code":18048},{"start":18083,"length":6,"messageText":"'prefix' is possibly 'undefined'.","category":1,"code":18048},{"start":18142,"length":6,"messageText":"'prefix' is possibly 'undefined'.","category":1,"code":18048},{"start":18714,"length":6,"messageText":"'prefix' is possibly 'undefined'.","category":1,"code":18048},{"start":18834,"length":6,"messageText":"'prefix' is possibly 'undefined'.","category":1,"code":18048},{"start":19440,"length":8,"code":2412,"category":1,"messageText":{"messageText":"Type 'string | undefined' is not assignable to type 'string' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the type of the target.","category":1,"code":2412,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":19483,"length":11,"code":2412,"category":1,"messageText":{"messageText":"Type 'string | undefined' is not assignable to type 'string' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the type of the target.","category":1,"code":2412,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":21020,"length":6,"messageText":"'prefix' is possibly 'undefined'.","category":1,"code":18048},{"start":21168,"length":6,"messageText":"'prefix' is possibly 'undefined'.","category":1,"code":18048},{"start":21269,"length":6,"messageText":"'prefix' is possibly 'undefined'.","category":1,"code":18048},{"start":21360,"length":6,"messageText":"'prefix' is possibly 'undefined'.","category":1,"code":18048},{"start":21605,"length":6,"messageText":"'prefix' is possibly 'undefined'.","category":1,"code":18048},{"start":21711,"length":6,"messageText":"'prefix' is possibly 'undefined'.","category":1,"code":18048}]],[86,[{"start":10720,"length":13,"code":2412,"category":1,"messageText":"Type 'undefined' is not assignable to type 'NativeNode' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the type of the target."},{"start":11089,"length":16,"code":2412,"category":1,"messageText":"Type 'undefined' is not assignable to type 'NativeNode' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the type of the target."},{"start":12849,"length":17,"code":2322,"category":1,"messageText":{"messageText":"Type 'NativeNode | undefined' is not assignable to type 'NativeNode | null'.","category":1,"code":2322,"next":[{"messageText":"Type 'undefined' is not assignable to type 'NativeNode | null'.","category":1,"code":2322}]}},{"start":13399,"length":9,"messageText":"'prevValue' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true}]],[88,[{"start":14542,"length":13,"messageText":"'_unbindEvents' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":16709,"length":7,"messageText":"'domNode' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":16750,"length":5,"messageText":"'vnode' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":18495,"length":21,"code":2769,"category":1,"messageText":{"messageText":"No overload matches this call.","category":1,"code":2769,"next":[{"messageText":"The last overload gave the following error.","category":1,"code":2770,"next":[{"messageText":"Type 'string | undefined' is not assignable to type 'string'.","category":1,"code":2322,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]}]}]},"relatedInformation":[{"file":"../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es5.d.ts","start":18718,"length":45,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502},{"file":"../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es5.d.ts","start":18670,"length":103,"messageText":"The last overload is declared here.","category":1,"code":2771}]},{"start":29397,"length":2,"messageText":"'el' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true}]],[89,[{"start":3603,"length":14,"code":2769,"category":1,"messageText":{"messageText":"No overload matches this call.","category":1,"code":2769,"next":[{"messageText":"The last overload gave the following error.","category":1,"code":2770,"next":[{"messageText":"Type 'string | undefined' is not assignable to type 'string'.","category":1,"code":2322,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]}]}]},"relatedInformation":[{"file":"../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es5.d.ts","start":18718,"length":45,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502},{"file":"../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es5.d.ts","start":18670,"length":103,"messageText":"The last overload is declared here.","category":1,"code":2771}]}]],[92,[{"start":6629,"length":8,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'T | undefined' is not assignable to parameter of type 'T'.","category":1,"code":2345,"next":[{"messageText":"'T' could be instantiated with an arbitrary type which could be unrelated to 'T | undefined'.","category":1,"code":5082}]}},{"start":7226,"length":8,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'T | undefined' is not assignable to parameter of type 'T'.","category":1,"code":2345,"next":[{"messageText":"'T' could be instantiated with an arbitrary type which could be unrelated to 'T | undefined'.","category":1,"code":5082}]}},{"start":7328,"length":10,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | number | undefined' is not assignable to parameter of type 'string | number'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string | number'.","category":1,"code":2322}]}},{"start":7364,"length":10,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | number | undefined' is not assignable to parameter of type 'string | number'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string | number'.","category":1,"code":2322}]}}]],[94,[{"start":1832,"length":8,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | undefined' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":1856,"length":4,"code":2375,"category":1,"messageText":{"messageText":"Type '{ type: \"element\"; tag: string | undefined; props: Record<string, string>; events: Record<string, string>; directives: { if?: string; each?: { item: string; expression: string; }; }; children: never[]; }' is not assignable to type 'ASTNode' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the types of the target's properties.","category":1,"code":2375,"next":[{"messageText":"Types of property 'tag' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type 'string | undefined' is not assignable to type 'string'.","category":1,"code":2322,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}],"canonicalHead":{"code":2375,"messageText":"Type '{ type: \"element\"; tag: string | undefined; props: Record<string, string>; events: Record<string, string>; directives: { if?: string; each?: { item: string; expression: string; }; }; children: never[]; }' is not assignable to type 'ASTNode' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the types of the target's properties."}}]}]}},{"start":2093,"length":13,"messageText":"'root.children' is possibly 'undefined'.","category":1,"code":18048},{"start":2250,"length":7,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | undefined' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":2607,"length":13,"messageText":"'root.children' is possibly 'undefined'.","category":1,"code":18048},{"start":3202,"length":13,"messageText":"'root.children' is possibly 'undefined'.","category":1,"code":18048},{"start":3293,"length":13,"messageText":"'root.children' is possibly 'undefined'.","category":1,"code":18048},{"start":3417,"length":13,"messageText":"'root.children' is possibly 'undefined'.","category":1,"code":18048},{"start":5077,"length":8,"messageText":"'attrName' is possibly 'undefined'.","category":1,"code":18048},{"start":5145,"length":8,"messageText":"'attrName' is possibly 'undefined'.","category":1,"code":18048},{"start":5170,"length":17,"code":2322,"category":1,"messageText":{"messageText":"Type 'string | undefined' is not assignable to type 'string'.","category":1,"code":2322,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":5216,"length":8,"messageText":"'attrName' is possibly 'undefined'.","category":1,"code":18048},{"start":5283,"length":8,"messageText":"'attrName' is possibly 'undefined'.","category":1,"code":18048},{"start":5308,"length":15,"code":2322,"category":1,"messageText":{"messageText":"Type 'string | undefined' is not assignable to type 'string'.","category":1,"code":2322,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":5381,"length":13,"code":2412,"category":1,"messageText":{"messageText":"Type 'string | undefined' is not assignable to type 'string' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the type of the target.","category":1,"code":2412,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":5506,"length":9,"messageText":"'attrValue' is possibly 'undefined'.","category":1,"code":18048},{"start":5603,"length":4,"code":2322,"category":1,"messageText":{"messageText":"Type 'string | undefined' is not assignable to type 'string'.","category":1,"code":2322,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]},"relatedInformation":[{"start":4762,"length":4,"messageText":"The expected type comes from property 'item' which is declared here on type '{ item: string; expression: string; }'","category":3,"code":6500}]},{"start":5623,"length":10,"code":2322,"category":1,"messageText":{"messageText":"Type 'string | undefined' is not assignable to type 'string'.","category":1,"code":2322,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]},"relatedInformation":[{"start":4776,"length":10,"messageText":"The expected type comes from property 'expression' which is declared here on type '{ item: string; expression: string; }'","category":3,"code":6500}]},{"start":5698,"length":8,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":6290,"length":8,"messageText":"Object is possibly 'undefined'.","category":1,"code":2532},{"start":7458,"length":16,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'ASTNode | undefined' is not assignable to parameter of type 'ASTNode'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'ASTNode'.","category":1,"code":2322}]}}]],[95,[{"start":3598,"length":8,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'VaporNode | undefined' is not assignable to parameter of type 'VaporNode'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'VaporNode'.","category":1,"code":2322}]}}]]],"latestChangedDtsFile":"./types/vapor/index.d.ts","version":"6.0.2"}
|