You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
532 B

2 months ago
  1. import type { ApiProxy } from './proxy.js';
  2. import type { PluginDescriptor, SetupFunction } from './index.js';
  3. export interface PluginQueueItem {
  4. pluginDescriptor: PluginDescriptor;
  5. setupFn: SetupFunction;
  6. proxy?: ApiProxy;
  7. }
  8. interface GlobalTarget {
  9. __VUE_DEVTOOLS_PLUGINS__?: PluginQueueItem[];
  10. __VUE_DEVTOOLS_PLUGIN_API_AVAILABLE__?: boolean;
  11. }
  12. export declare function getDevtoolsGlobalHook(): any;
  13. export declare function getTarget(): GlobalTarget;
  14. export declare const isProxyAvailable: boolean;
  15. export {};