vuestic-ui
Version:
Vue 3 UI Framework
10 lines (9 loc) • 432 B
TypeScript
import { createGlobalConfig } from '../global-config';
import { PartialGlobalConfig } from '../types';
/** Provides global configuration to Vuestic components */
export declare const GlobalConfigPlugin: import("../../vue-plugin/types").VuesticPluginFabric<[config?: PartialGlobalConfig | undefined]>;
declare module 'vue' {
interface ComponentCustomProperties {
$vaConfig: ReturnType<typeof createGlobalConfig>;
}
}