@lvce-editor/test-worker 7.9.0 → 7.10.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/testWorkerMain.js +4 -1
- package/package.json +1 -1
package/dist/testWorkerMain.js
CHANGED
|
@@ -1036,6 +1036,8 @@ const WebWorkerRpcClient = {
|
|
|
1036
1036
|
|
|
1037
1037
|
const Directory = 3;
|
|
1038
1038
|
|
|
1039
|
+
const Script$1 = 2;
|
|
1040
|
+
|
|
1039
1041
|
const Web = 1;
|
|
1040
1042
|
const Electron = 2;
|
|
1041
1043
|
const Remote = 3;
|
|
@@ -3496,7 +3498,8 @@ const acceptInput = async () => {
|
|
|
3496
3498
|
await invoke$1('Source Control.acceptInput');
|
|
3497
3499
|
};
|
|
3498
3500
|
const handleInput = async text => {
|
|
3499
|
-
|
|
3501
|
+
// @ts-ignore
|
|
3502
|
+
await invoke$1('Source Control.handleInput', text, Script$1);
|
|
3500
3503
|
};
|
|
3501
3504
|
const handleClickSourceControlButtons = async (index, name) => {
|
|
3502
3505
|
await invoke$1('Source Control.handleClickSourceControlButtons', index, name);
|