@lvce-editor/virtual-dom-worker 1.16.0 → 1.18.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
|
@@ -13,3 +13,10 @@ export const diff: (
|
|
|
13
13
|
oldNodes: readonly VirtualDomNode[],
|
|
14
14
|
newNodes: readonly VirtualDomNode[],
|
|
15
15
|
) => readonly Patch[]
|
|
16
|
+
|
|
17
|
+
export interface DomEventListener {
|
|
18
|
+
readonly name: string
|
|
19
|
+
readonly params: readonly string[]
|
|
20
|
+
readonly preventDefault?: boolean
|
|
21
|
+
readonly passive?: boolean
|
|
22
|
+
}
|
package/package.json
CHANGED
package/src/parts/Main/Main.ts
CHANGED