@lvce-editor/ipc 4.0.0 → 4.0.1
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
|
@@ -9,7 +9,7 @@ interface Ipc {
|
|
|
9
9
|
|
|
10
10
|
interface IpcChild {
|
|
11
11
|
readonly listen: any
|
|
12
|
-
readonly wrap: Ipc
|
|
12
|
+
readonly wrap: (rawIpc: any) => Ipc
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
export const IpcChildWithElectronMessagePort: IpcChild
|
|
@@ -20,7 +20,7 @@ export const IpcChildWithNodeWorker: IpcChild
|
|
|
20
20
|
|
|
21
21
|
interface IpcParent {
|
|
22
22
|
readonly create: any
|
|
23
|
-
readonly wrap: Ipc
|
|
23
|
+
readonly wrap: (rawIpc: any) => Ipc
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
export const IpcParentWithElectronUtilityProcess: IpcParent
|