@vueuse/electron 13.5.0 → 13.6.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 +4 -0
- package/index.mjs +1 -0
- package/package.json +2 -2
package/index.d.mts
CHANGED
|
@@ -91,6 +91,8 @@ declare function useIpcRenderer(ipcRenderer?: IpcRenderer): UseIpcRendererReturn
|
|
|
91
91
|
*
|
|
92
92
|
* @see https://www.electronjs.org/docs/api/ipc-renderer#ipcrendererinvokechannel-args
|
|
93
93
|
* @see https://vueuse.org/useIpcRendererInvoke
|
|
94
|
+
*
|
|
95
|
+
* @__NO_SIDE_EFFECTS__
|
|
94
96
|
*/
|
|
95
97
|
declare function useIpcRendererInvoke<T>(ipcRenderer: IpcRenderer, channel: string, ...args: any[]): ShallowRef<T | null>;
|
|
96
98
|
/**
|
|
@@ -102,6 +104,8 @@ declare function useIpcRendererInvoke<T>(ipcRenderer: IpcRenderer, channel: stri
|
|
|
102
104
|
*
|
|
103
105
|
* @see https://www.electronjs.org/docs/api/ipc-renderer#ipcrendererinvokechannel-args
|
|
104
106
|
* @see https://vueuse.org/useIpcRendererInvoke
|
|
107
|
+
*
|
|
108
|
+
* @__NO_SIDE_EFFECTS__
|
|
105
109
|
*/
|
|
106
110
|
declare function useIpcRendererInvoke<T>(channel: string, ...args: any[]): ShallowRef<T | null>;
|
|
107
111
|
|
package/index.mjs
CHANGED
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.6.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.6.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"electron": "^13.1.0"
|