x-runtime-lib 0.9.61 → 0.9.63

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 CHANGED
@@ -1,6 +1,7 @@
1
- import { n as QuickJSDeferredPromise, r as QuickJSRuntime, t as QuickJSContext } from "./vendor.c01gojgw.js";
1
+ import { n as EventType, t as Emitter } from "./vendor.btdd68dz.js";
2
2
  import { Type } from "x-essential-lib";
3
3
  import { ComputedRef, Reactive, Ref, ShallowRef, VNode } from "vue";
4
+ import { QuickJSContext, QuickJSDeferredPromise, QuickJSRuntime } from "quickjs-emscripten";
4
5
 
5
6
  //#region src/types/basic.d.ts
6
7
  type Env = 'dev' | 'prod';
@@ -297,7 +298,7 @@ declare class Sandbox {
297
298
  env: Env;
298
299
  mode: Mode;
299
300
  type: 'page' | 'comp';
300
- eventBus: import("mitt").Emitter<Record<import("mitt").EventType, unknown>>;
301
+ eventBus: Emitter<Record<EventType, unknown>>;
301
302
  hooks: Hooks;
302
303
  vm: QuickJSContext | undefined;
303
304
  promiseManager: PromiseManager | undefined;