useTheme.d.ts 211 B

123
  1. import type { ThemeConfig } from '../context';
  2. import type { Ref } from 'vue';
  3. export default function useTheme(theme?: Ref<ThemeConfig>, parentTheme?: Ref<ThemeConfig>): import("vue").ComputedRef<ThemeConfig>;