vuestic-ui
Version:
Vue 3 UI Framework
7 lines (6 loc) • 310 B
TypeScript
import type { App } from 'vue';
import { inject as vueInject } from 'vue';
export declare const setCurrentApp: (newApp: App | null) => void;
export declare const getCurrentApp: () => App<any> | null;
/** Wrapper around vue inject, so it can be used in plugins */
export declare const inject: typeof vueInject;