@byteluck-fe/runtime-engine 7.0.0-beta.4 → 7.0.0-beta.6

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.
@@ -10,8 +10,8 @@ import { PropsInstanceType } from '../../../src/constant';
10
10
  import { useCancel as desktopUseCancel } from '../../../src/entry_desktop/hooks/useCancel';
11
11
  import { useCancel as mobileUseCancel } from '../../../src/entry_mobile//views/page-render/useCancel';
12
12
  import { corssDomainMessageProcessor } from '../../../src/utils/core/crossMessageProcessor';
13
- import { ComputedRef, Ref } from 'vue';
14
-
13
+ /// <reference types="@/types/driven" />
14
+ import * as Vue from 'vue';
15
15
  declare const useRenderEngine: ({ props, emit, route, router, store, }: {
16
16
  props: PropsInstanceType<'render-engine'>;
17
17
  emit: EmitType;
@@ -20,11 +20,11 @@ declare const useRenderEngine: ({ props, emit, route, router, store, }: {
20
20
  store: Store<any>;
21
21
  }) => {
22
22
  context: any;
23
- runtimeInstances: ComputedRef<any[]>;
24
- title: Ref<string>;
23
+ runtimeInstances: Vue.ComputedRef<any[]>;
24
+ title: Vue.Ref<string>;
25
25
  prefixCls: string;
26
26
  getState: (id: string) => any;
27
- isCreatedEngine: Ref<boolean>;
27
+ isCreatedEngine: Vue.Ref<boolean>;
28
28
  isPc: boolean;
29
29
  createEngine: () => Promise<void>;
30
30
  ActionUtilsPlugin: typeof ActionUtilsPlugin;