@vueuse/electron 13.0.0 → 13.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/index.d.mts +2 -1
- package/package.json +2 -2
package/index.d.mts
CHANGED
|
@@ -136,4 +136,5 @@ declare function useZoomLevel(webFrame: WebFrame, level: MaybeRef<number>): Ref<
|
|
|
136
136
|
declare function useZoomLevel(webFrame: WebFrame): Ref<number>;
|
|
137
137
|
declare function useZoomLevel(): Ref<number>;
|
|
138
138
|
|
|
139
|
-
export {
|
|
139
|
+
export { useIpcRenderer, useIpcRendererInvoke, useIpcRendererOn, useZoomFactor, useZoomLevel };
|
|
140
|
+
export type { UseIpcRendererReturn };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vueuse/electron",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "13.
|
|
4
|
+
"version": "13.2.0",
|
|
5
5
|
"description": "Electron renderer process modules for VueUse",
|
|
6
6
|
"author": "Archer Gu<https://github.com/ArcherGu>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"vue": "^3.5.0"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@vueuse/shared": "13.
|
|
43
|
+
"@vueuse/shared": "13.2.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"electron": "^13.1.0"
|