x-runtime-lib 0.9.62 → 0.9.64
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 -1
- package/dist/index.js +5 -5
- package/dist/vendor.btdd68dz.js +283 -0
- package/package.json +8 -8
- package/dist/vendor.n19wivyx.js +0 -240
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { n as EventType, t as Emitter } from "./vendor.btdd68dz.js";
|
|
1
2
|
import { Type } from "x-essential-lib";
|
|
2
3
|
import { ComputedRef, Reactive, Ref, ShallowRef, VNode } from "vue";
|
|
3
4
|
import { QuickJSContext, QuickJSDeferredPromise, QuickJSRuntime } from "quickjs-emscripten";
|
|
@@ -297,7 +298,7 @@ declare class Sandbox {
|
|
|
297
298
|
env: Env;
|
|
298
299
|
mode: Mode;
|
|
299
300
|
type: 'page' | 'comp';
|
|
300
|
-
eventBus:
|
|
301
|
+
eventBus: Emitter<Record<EventType, unknown>>;
|
|
301
302
|
hooks: Hooks;
|
|
302
303
|
vm: QuickJSContext | undefined;
|
|
303
304
|
promiseManager: PromiseManager | undefined;
|