UNPKG

vuestic-ui

Version:
10 lines (9 loc) 432 B
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>; } }