@lvce-editor/virtual-dom-worker 2.12.0 → 2.13.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/dist/index.d.ts CHANGED
@@ -252,7 +252,7 @@ declare const Welcome = "Welcome";
252
252
  declare const WelcomeMessage = "WelcomeMessage";
253
253
  export interface DomEventListener {
254
254
  readonly name: string;
255
- readonly params: readonly string[];
255
+ readonly params: readonly (string | number)[];
256
256
  readonly preventDefault?: boolean;
257
257
  readonly passive?: boolean;
258
258
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/virtual-dom-worker",
3
- "version": "2.12.0",
3
+ "version": "2.13.0",
4
4
  "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "keywords": [],
@@ -1,6 +1,6 @@
1
1
  export interface DomEventListener {
2
2
  readonly name: string
3
- readonly params: readonly string[]
3
+ readonly params: readonly (string | number)[]
4
4
  readonly preventDefault?: boolean
5
5
  readonly passive?: boolean
6
6
  }