@lvce-editor/virtual-dom 1.0.1 → 1.0.2
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 +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -10,9 +10,9 @@ export const setIpc: (ipc: any) => void
|
|
|
10
10
|
|
|
11
11
|
export const setComponentUid: ($Element: HTMLElement, uid: number) => void
|
|
12
12
|
|
|
13
|
-
export const getComponentUid: ($Element: HTMLElement) =>
|
|
13
|
+
export const getComponentUid: ($Element: HTMLElement) => number
|
|
14
14
|
|
|
15
|
-
export const getComponentUidFromEvent: (event: Event) =>
|
|
15
|
+
export const getComponentUidFromEvent: (event: Event) => number
|
|
16
16
|
|
|
17
17
|
export const rememberFocus: (
|
|
18
18
|
$Viewlet: HTMLElement,
|