@vtj/designer 0.13.25 → 0.13.26

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.
@@ -1,28 +0,0 @@
1
- import { Ref } from 'vue';
2
- import { Engine } from './engine';
3
- declare global {
4
- interface Window {
5
- __VUE_DEVTOOLS_GLOBAL_HOOK__: any;
6
- __VUE_DEVTOOLS_KIT_ACTIVE_APP_RECORD__: any;
7
- }
8
- }
9
- export declare class DevTools {
10
- private window?;
11
- private engine?;
12
- private app?;
13
- isOpen: Ref<boolean>;
14
- enabled?: boolean;
15
- private proxyUpdateState;
16
- private isInited;
17
- private proxyLoad;
18
- constructor();
19
- private createScript;
20
- private loadScripts;
21
- load(window?: Window): Promise<void>;
22
- updateState(e: StorageEvent): void;
23
- init(window: Window, engine: Engine): void;
24
- checkDevtools(url: string): Promise<boolean>;
25
- appInit(window: Window): void;
26
- appUnmount(window: Window): void;
27
- private getState;
28
- }