UNPKG

@vuepress/plugin-theme-data

Version:

VuePress plugin - theme data

6 lines (5 loc) 293 B
import type { Ref } from 'vue'; import type { ThemeData } from '../../shared/index.js'; export type ThemeDataRef<T extends ThemeData = ThemeData> = Ref<T>; export declare const themeData: ThemeDataRef; export declare const useThemeData: <T extends ThemeData = ThemeData>() => ThemeDataRef<T>;