UNPKG

@fefade/vue

Version:

Reusable Vue UI components powered by the FEFADE core system.

8 lines (7 loc) 255 B
import { ThemeColorType, ThemeModeType } from '@fefade/core/types'; import { InjectionKey, Ref } from 'vue'; export declare const ThemeConfigSymbol: InjectionKey<{ mode: Ref<ThemeModeType>; colors: Ref<ThemeColorType>; toggle: () => void; }>;